reclaim-mcp-server
A community-maintained Model Context Protocol (MCP) server for interacting with the Reclaim.ai API.
Reclaim.ai MCP Server π (UNOFFICIAL)
β οΈ UNOFFICIAL & UNAFFILIATED β This project is not endorsed, sponsored, or supported by Reclaim.ai. It simply uses Reclaim's public API. Use at your own risk and comply with Reclaim's Terms of Service.
A communityβmaintained Model Context Protocol (MCP) server that lets any MCPβcapable client (Claude Desktop, Continue, Cursor, custom scripts, β¦) interact with the Reclaim.ai API through a set of standard resources & tools.
π§ Why MCP?
-
MCP is the "USBβC" of LLM integrations β one wire that lets every model talk to every tool.
-
Run this server once and all your MCPβaware apps instantly gain Reclaim superβpowers.
β¨ Key Features
-
Activeβtasks resource (
tasks://active
) -
14 taskβoperation tools (list, create, update, complete, timers, β¦)
-
π‘ Typeβsafe (TypeScript + Zod) & solid errorβhandling
-
π¦ Zeroβconfig stdio transport β perfect for local AI assistants
π MCP Capabilities
Tools (Actions)
Tool | Description | Parameters | β Idemp. | β οΈ Destr. |
---|---|---|---|---|
reclaim_list_tasks | List tasks (default = active) | { "filter"?: "active"|"all" } | β | β |
reclaim_get_task | Fetch a task | { "taskId": number } | β | β |
reclaim_create_task | Create a new task | { /* task properties */ } | β | β |
reclaim_update_task | Update task properties | { "taskId": number, /* updated properties */ } | β | β |
reclaim_mark_complete | Mark complete | { "taskId": number } | β | β |
reclaim_mark_incomplete | Unarchive / mark incomplete | { "taskId": number } | β | β |
reclaim_delete_task | Delete permanently | { "taskId": number } | β | β |
reclaim_add_time | Add schedule minutes | { "taskId": number, "minutes": number } | β | β |
reclaim_start_timer | Start timer | { "taskId": number } | β | β |
reclaim_stop_timer | Stop timer | { "taskId": number } | β | β |
reclaim_log_work | Log work time | { "taskId": number, "minutes": number, "end"?: string } | β | β |
reclaim_clear_exceptions | Clear scheduling exceptions | { "taskId": number } | β | β |
reclaim_prioritize | Prioritise in planner | { "taskId": number } | β | β |
β οΈ Known Issues
COMPLETE
β done. Reclaim marks a task COMPLETE
when its scheduled block ends, even if you haven't finished the work. This server does include those tasks as active when the LLM uses the tool to pull active tasks (and reminds the model that COMPLETE
tasks are still active). However, LLMs (Claude) sometimes ignore COMPLETE
tasks when asked for "open" or "active" tasks. If that happens, you may need to prompt the LLM explicitly to "include tasks with status COMPLETE".
π Quick Start
-
Prerequisites
- Node.js β₯ 18
- Reclaim API key
-
Claude Desktop configuration (minimal)
{ "mcpServers": { "reclaim": { "command": "npx", "args": [ "reclaim-mcp-server" ], "env": { "RECLAIM_API_KEY": "xxx" } } } }
**Alternative Configuration:**
```json
{
"mcpServers": {
"reclaim": {
"command": "absolute/path/to/node (run `which node` in terminal)",
"args": [
"/absolute/path/to/reclaim-mcp-server/dist/index.js"
],
"env": { "RECLAIM_API_KEY": "xxx" }
}
}
}
Alternative: Manual Installation
If you prefer to install from source:
git clone https://github.com/jj3ny/reclaim-mcp-server.git
cd reclaim-mcp-server
pnpm install && pnpm build
# Run with your API key
RECLAIM_API_KEY=your_api_key node dist/index.js
π€ Contributing
Bug reports & PRs welcome! To contribute:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Make your changes (following the code style)
- Commit using Conventional Commits (
feat:
,fix:
, etc.) - Push to your branch (
git push origin feature/amazing-feature
) - Open a Pull Request
Please squash your commits before opening a PR.
π License
MIT β see LICENSE.
Related MCP Servers
View all calendar_management servers βapple-mcp
by Dhravya
This is a collection of Apple-native tools for the Model Context Protocol (MCP) that integrates with various Apple applications to automate tasks and manage communications.
iMCP
by loopwork-ai
iMCP is a macOS app that connects your digital life with AI, supporting the Model Context Protocol (MCP) for seamless integration with various clients.
mcp-gsuite
by MarkusPfundstein
MCP server to interact with Google products, specifically Gmail and Calendar.
google-calendar-mcp
by nspady
This is a Model Context Protocol (MCP) server that provides integration with Google Calendar, allowing LLMs to interact with calendar events through a standardized interface.
google-workspace-mcp
by aaronsb
The Google Workspace MCP Server is a Model Context Protocol server that allows users to manage their Google Workspace, including Gmail, Calendar, and Drive, through a secure and efficient interface.
applescript-mcp
by joshrutkowski
A Model Context Protocol server that enables LLM applications to interact with macOS through AppleScript, providing a standardized interface for AI applications to control system functions, manage files, handle notifications, and more.
meeting-mcp
by Meeting-Baas
A Model Context Protocol (MCP) server that provides tools for managing meeting data, including transcripts, recordings, calendar events, and search functionality.