usefulapi

Reclaim.ai MCP server. Read tasks, habits, events and scheduling links; create and update Reclaim tasks and habits.

Claude

  1. Open Settings → Connectors → Add custom connector
  2. Paste this URL:
    https://reclaimai.usefulapi.io/mcp
  3. Authenticate with Reclaim.ai when prompted

Cursor · VS Code · Windsurf · Cline

Add to your MCP config, then reload & authorize:

{
  "mcpServers": {
    "reclaimai": {
      "url": "https://reclaimai.usefulapi.io/mcp"
    }
  }
}
live17 toolsFree 100 tool calls / monthPro $9/mo · $90/yr

Tools 17

ToolTypeWhat it does
reclaim_get_current_userread
Get current user
Get the authenticated Reclaim user's profile. Reclaim REST: GET /api/users/me.
reclaim_list_tasksread
List tasks
List the authenticated user's tasks. Reclaim REST: GET /api/tasks.
reclaim_get_taskread
Get task
Get a single task by id. Reclaim REST: GET /api/tasks/{id}.
reclaim_list_habitsread
List habits
List the authenticated user's daily habits. Reclaim REST: GET /api/assist/habits/daily.
reclaim_get_habitread
Get habit
Get a single daily habit by id. Reclaim REST: GET /api/assist/habits/daily/{id}.
reclaim_list_eventsread
List events
List calendar events. Reclaim REST: GET /api/events. Optional start/end window.
reclaim_create_taskwrite
Create task
Create a new task. Reclaim schedules it into your calendar automatically. Reclaim REST: POST /api/tasks.
reclaim_update_taskwrite
Update task
Update fields on an existing task. Only provided fields are changed. Reclaim REST: PATCH /api/tasks/{id}.
reclaim_mark_task_completewrite
Mark task complete
Mark a task as done in the planner. Reclaim REST: POST /api/planner/done/task/{id}.
reclaim_mark_task_incompletewrite
Mark task incomplete
Reopen a completed task (unarchive) in the planner. Reclaim REST: POST /api/planner/unarchive/task/{id}.
reclaim_start_taskwrite
Start task
Start time-tracking on a task now. Reclaim REST: POST /api/planner/start/task/{id}.
reclaim_stop_taskwrite
Stop task
Stop time-tracking on a task. Reclaim REST: POST /api/planner/stop/task/{id}.
reclaim_add_timewrite
Add time to task
Add scheduled time to a task. Reclaim REST: POST /api/planner/add-time/task/{id}.
reclaim_log_workwrite
Log work on task
Log completed work time against a task. Reclaim REST: POST /api/planner/log-work/task/{id}.
reclaim_delete_taskwrite
Delete task
Permanently delete a task. Reclaim REST: DELETE /api/tasks/{id}.
reclaim_usage_statusmeta
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_upgrademeta
Upgrade to Pro (unlimited)
Subscribe to Pro for unlimited tool calls, monthly ($9) or yearly ($90). Returns a Stripe Checkout link.

Pricing

PlanPriceLimit
Free$0100 tool calls / month
Pro$9/mo · $90/yrUnlimited

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.