- Home
- MCP servers
- Reclaim.ai
Reclaim.ai
- python
0
GitHub Stars
python
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"universalamateur-reclaim-mcp-server": {
"command": "uvx",
"args": [
"reclaim-mcp-server"
],
"env": {
"RECLAIM_API_KEY": "your_key_here"
}
}
}
}You can control your Reclaim.ai calendar, tasks, and habits from AI assistants through an MCP server. This lets you send natural language requests to create tasks, view calendars, mark habits complete, and view analytics from your preferred MCP client.
How to use
Use an MCP client to connect to the Reclaim MCP Server. You’ll run the server locally or via a container, then point your client to the server and provide your API key. Once connected, you can create tasks, check your schedule, mark habits as done, and fetch analytics from Reclaim.ai using natural language prompts.
How to install
Prerequisites: you need Python and a package manager, or an MCP client that supports stdio connections. The quickest way is to install via Python’s package manager, then configure your MCP client to run the server.
pip install reclaim-mcp-server
Other configurations and usage notes
Configure your MCP client with your API key to access Reclaim.ai. The server supports different deployment methods, including a local stdio server and containerized options. You can adjust the exposed features with a profile to limit tools if needed.
Troubleshooting
Invalid API key: verify your key at the Reclaim developer settings. If you hit rate limits, the server will retry automatically; reduce request frequency. If tools don’t appear after config changes, restart your MCP client. For ARM64 (Apple Silicon) warnings, use a compatible release (v0.8.1+).
Development
If you want to run the server in development mode, install dependencies and run tests locally. Use the project’s tooling to ensure code quality and proper typing.
Notes
This server is designed to work with MCP-compatible clients. Keep your API key secure and rotate it if you suspect any compromise.