Todoist MCP Server
Allows agents to create and manage tasks in Todoist, including setting descriptions, due dates, priorities, labels, and projects, as well as listing and filtering active or completed tasks.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Todoist MCP ServerAdd a task 'Review project proposal' due tomorrow with high priority"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Todoist MCP Server
Unofficial MCP server for Todoist that allows agents to create, and list tasks in your Todoist account.
Features
Create tasks with descriptions, due dates, priorities, and labels and projects.
List tasks List completed or uncompleted tasks with filtering by project or Todoist filters.
Works with Claude Desktop, Cursor, and other MCP clients
Related MCP server: Taskwarrior MCP Server
Installation
pip install todoist-mcp-serverSetup
1. Get Your Todoist API Token
Scroll down to "API token"
Copy your API token (keep it secure!)
2. Configure Your MCP Client
Usage Examples
Here are some examples of how to use the Todoist MCP server with different clients:
Claude Desktop
Add this to your claude_desktop_config.json file: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows)
{
"mcpServers": {
"todoist": {
"command": "todoist-mcp-server",
"env": {
"TODOIST_API_TOKEN": "your-api-token-here"
}
}
}
}Cursor
Add this to your Cursor settings:
Open Cursor Settings (
Cmd/Ctrl + ,)Search for "MCP"
Add the MCP server configuration:
{
"mcpServers": {
"todoist": {
"command": "todoist-mcp-server",
"env": {
"TODOIST_API_TOKEN": "your-api-token-here"
}
}
}
}Other MCP Clients
For any MCP-compatible client, use:
Command:
todoist-mcp-serverEnvironment Variable:
TODOIST_API_TOKEN=your-token
3. Restart Your Client
Restart Claude Desktop, Cursor, or your MCP client to load the server.
Usage
Once configured, you can interact with Todoist using natural language:
Creating Tasks
"Create a task to buy groceries"
"Add a task 'Call dentist' due tomorrow with high priority"
"Create a task to finish the report with description 'Include Q4 metrics' due next Friday"
Listing Tasks
"Show me my tasks for today"
"List all my high priority tasks"
"What tasks do I have in my Work project?"
Available Tools
create_task
Create a new task in Todoist.
Parameters:
content(required): Task title/contentdescription(optional): Task descriptionproject_name(optional): Project name to add task todue_string(optional): Due date in natural language ("tomorrow", "next monday")priority(optional): Priority level 1-4 (1=low, 2=medium, 3=high, 4=urgent)labels(optional): List of label names
list_active_tasks
List active tasks from Todoist.
Parameters:
project_name(optional): Filter by project namefilter_string(optional): Todoist filter ("today", "overdue", "p1")limit(optional): Maximum number of tasks (default: 50)
Troubleshooting
"Server disconnected" Error
Make sure you've installed the package:
pip install todoist-mcp-serverVerify your API token is correct
Check that the config file is in the right location
Restart your MCP client completely
"Command not found" or "ENOENT" Error
The most common cause is that your MCP client can't find the todoist-mcp-server command in its PATH.
Solution: Use the full path to the command
Find where the command is installed:
which todoist-mcp-serverUse the full path in your MCP config:
{ "mcpServers": { "todoist": { "command": "/full/path/to/todoist-mcp-server", "env": { "TODOIST_API_TOKEN": "your-api-token-here" } } } }
Other fixes:
Ensure the package is installed in the same Python environment your MCP client uses
Try reinstalling:
pip uninstall todoist-mcp-server && pip install todoist-mcp-server
API Token Issues
Get a fresh token from Todoist Integrations
Make sure there are no extra spaces in your config file
Verify the token has the necessary permissions
Development
To contribute or run from source:
git clone https://github.com/mehularora8/todoist-mcp
cd todoist-mcp
pip install -e .Security
Your API token is stored locally and only used to communicate with Todoist's API
No data is sent to third parties
The MCP server runs locally on your machine
License
MIT License - see LICENSE file for details.
Support
🐛 Issues: Report bugs or request features
📖 Todoist API: Official Documentation
🔧 MCP Protocol: Model Context Protocol
Note: This is an unofficial integration and is not affiliated with Todoist or Doist Inc.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceAn MCP server that enables LLMs to interact with Todoist tasks, projects, and other features through the Todoist API.Last updated317532MIT
- AlicenseAqualityDmaintenanceAn MCP server that enables AI assistants to interact with the Taskwarrior command-line task management tool. It allows users to list, create, modify, and organize tasks using projects, tags, and annotations through natural language.Last updated132MIT
- AlicenseBqualityCmaintenanceAn MCP server that integrates with the Todoist REST API v2 to enable AI assistants to manage tasks, projects, sections, comments, and labels. It supports comprehensive operations including batch task creation, history tracking for completed tasks, and organized project management.Last updated333171MIT
- Alicense-qualityDmaintenanceAn MCP server that provides AI assistants with full access to Todoist tasks, projects, labels, and filters. It enables comprehensive task management, project organization, and productivity tracking through a wide range of specialized tools.Last updated620MIT
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
An MCP server that integrates with Discord to provide AI-powered features.
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mehularora8/todoist-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server