Reclaim AI MCP Server

Reclaim is an ai calendar management tool that helps you plan your schedule and tasks.

Remote serverstreamable-httpTypeScript

What is the Reclaim AI MCP server?

Reclaim is an ai calendar management tool that helps you plan your schedule and tasks. That is what the reclaim ai mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

  1. Claude Desktop configuration (minimal) json { "mcpServers": { "reclaim": { "command": "npx", "args": ["reclaim-mcp-server"], "env": { "RECLAIM_API_KEY": "xxx" } } } }

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

The tools it exposes

The server publishes 13 tools. What each one is for:

  • reclaim_list_tasks — List tasks (default = active)
  • reclaim_get_task — Fetch a task
  • reclaim_create_task — Create a new task
  • reclaim_update_task — Update task properties
  • reclaim_mark_complete — Mark complete
  • reclaim_mark_incomplete — Unarchive / mark incomplete
  • reclaim_delete_task — Delete permanently
  • reclaim_add_time — Add schedule minutes
  • reclaim_start_timer — Start timer
  • reclaim_stop_timer — Stop timer
  • reclaim_log_work — Log work time
  • reclaim_clear_exceptions — Clear scheduling exceptions

What it needs from you

Configuration is passed through the environment: RECLAIM_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 13 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Reclaim AI.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of planning and project tracking servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Reclaim AI's toolset — reclaim_list_tasks, reclaim_get_task, reclaim_create_task and 10 more — is a fair guide to whether it matches your workflow.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
reclaim_list_tasksList tasks (default = active)
reclaim_get_taskFetch a task
reclaim_create_taskCreate a new task
reclaim_update_taskUpdate task properties
reclaim_mark_completeMark complete
reclaim_mark_incompleteUnarchive / mark incomplete
reclaim_delete_taskDelete permanently
reclaim_add_timeAdd schedule minutes
reclaim_start_timerStart timer
reclaim_stop_timerStop timer
reclaim_log_workLog work time
reclaim_clear_exceptionsClear scheduling exceptions
reclaim_prioritizePrioritise in planner

How to install the Reclaim AI MCP server

{
     "mcpServers": {
       "reclaim": {
         "command": "npx",
         "args": ["reclaim-mcp-server"],
         "env": { "RECLAIM_API_KEY": "xxx" }
       }
     }
   }

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
RECLAIM_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Reclaim AI to reclaim list tasks.
  • Use Reclaim AI to reclaim get task.
  • Use Reclaim AI to reclaim create task.

Frequently asked questions

It connects Reclaim AI to MCP-compatible AI assistants such as Claude and Cursor, exposing 13 tools (reclaim_list_tasks, reclaim_get_task, reclaim_create_task, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Reclaim AI directly.