Reclaim.ai MCP server. Read tasks, habits, events and scheduling links; create and update Reclaim tasks and habits.
Add to your MCP config, then reload & authorize:
{
"mcpServers": {
"reclaimai": {
"url": "https://reclaimai.usefulapi.io/mcp"
}
}
}| Tool | Type | What it does |
|---|---|---|
reclaim_get_current_user | read | Get current user Get the authenticated Reclaim user's profile. Reclaim REST: GET /api/users/me. |
reclaim_list_tasks | read | List tasks List the authenticated user's tasks. Reclaim REST: GET /api/tasks. |
reclaim_get_task | read | Get task Get a single task by id. Reclaim REST: GET /api/tasks/{id}. |
reclaim_list_habits | read | List habits List the authenticated user's daily habits. Reclaim REST: GET /api/assist/habits/daily. |
reclaim_get_habit | read | Get habit Get a single daily habit by id. Reclaim REST: GET /api/assist/habits/daily/{id}. |
reclaim_list_events | read | List events List calendar events. Reclaim REST: GET /api/events. Optional start/end window. |
reclaim_create_task | write | Create task Create a new task. Reclaim schedules it into your calendar automatically. Reclaim REST: POST /api/tasks. |
reclaim_update_task | write | Update task Update fields on an existing task. Only provided fields are changed. Reclaim REST: PATCH /api/tasks/{id}. |
reclaim_mark_task_complete | write | Mark task complete Mark a task as done in the planner. Reclaim REST: POST /api/planner/done/task/{id}. |
reclaim_mark_task_incomplete | write | Mark task incomplete Reopen a completed task (unarchive) in the planner. Reclaim REST: POST /api/planner/unarchive/task/{id}. |
reclaim_start_task | write | Start task Start time-tracking on a task now. Reclaim REST: POST /api/planner/start/task/{id}. |
reclaim_stop_task | write | Stop task Stop time-tracking on a task. Reclaim REST: POST /api/planner/stop/task/{id}. |
reclaim_add_time | write | Add time to task Add scheduled time to a task. Reclaim REST: POST /api/planner/add-time/task/{id}. |
reclaim_log_work | write | Log work on task Log completed work time against a task. Reclaim REST: POST /api/planner/log-work/task/{id}. |
reclaim_delete_task | write | Delete task Permanently delete a task. Reclaim REST: DELETE /api/tasks/{id}. |
reclaim_usage_status | Usage status (free-tier meter) Report the caller's current free-tier usage this month: calls used, monthly limit, remaining, and whether the cap is reached. | |
reclaim_upgrade | Upgrade to Pro (unlimited) Subscribe to Pro for unlimited tool calls, monthly ($9) or yearly ($90). Returns a Stripe Checkout link. |
| Plan | Price | Limit |
|---|---|---|
| Free | $0 | 100 tool calls / month |
| Pro | $9/mo · $90/yr | Unlimited |
This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.