The Todoist MCP Server integrates Claude with Todoist, allowing you to manage your tasks using natural language. This server acts as a bridge between Claude and your Todoist account, enabling intuitive task management through conversational commands.
To install Todoist MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @abhiz123/todoist-mcp-server --client claude
npm install -g @abhiz123/todoist-mcp-server
Add to your claude_desktop_config.json
:
{
"mcpServers": {
"todoist": {
"command": "npx",
"args": ["-y", "@abhiz123/todoist-mcp-server"],
"env": {
"TODOIST_API_TOKEN": "your_api_token_here"
}
}
}
}
Create new tasks with various attributes:
Retrieve and filter tasks:
Update existing tasks using natural language search:
Mark tasks as complete using natural language search:
Remove tasks using natural language search:
"Create task 'Team Meeting'"
"Add task 'Review PR' due tomorrow at 2pm"
"Create high priority task 'Fix bug' with description 'Critical performance issue'"
"Show all my tasks"
"List tasks due today"
"Get high priority tasks"
"Show tasks due this week"
"Update documentation task to be due next week"
"Change priority of bug fix task to urgent"
"Add description to team meeting task"
"Mark the PR review task as complete"
"Complete the documentation task"
"Delete the PR review task"
"Remove meeting prep task"
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.