Todoist MCP Server
Productivitystdiov1.0.0
MCP server for Todoist that lets AI agents create, update, complete, and query tasks using natural language. Supports projects, due dates, priorities, labels, and filters, making it easy to manage a personal or team task list conversationally.
Connect
Add this configuration to .claude/mcp.json
{
"mcpServers": {
"todoist": {
"command": "npx",
"args": [
"-y",
"@doist/todoist-mcp"
],
"env": {
"TODOIST_API_TOKEN": "<YOUR_TODOIST_API_TOKEN>"
}
}
}
}Tools (3)
create_task
Create a Todoist task with optional due date, priority, and project.
{
"type": "object",
"required": [
"content"
],
"properties": {
"content": {
"type": "string",
"description": "Task text"
},
"priority": {
"type": "integer",
"description": "Priority from 1 (normal) to 4 (urgent)"
},
"due_string": {
"type": "string",
"description": "Natural-language due date (e.g., \"tomorrow at 5pm\")"
},
"project_id": {
"type": "string",
"description": "Target project ID"
}
}
}list_tasks
List active tasks, optionally filtered by project or a Todoist filter query.
{
"type": "object",
"properties": {
"filter": {
"type": "string",
"description": "Todoist filter expression"
},
"project_id": {
"type": "string",
"description": "Project ID to scope results"
}
}
}complete_task
Mark a task as complete.
{
"type": "object",
"required": [
"task_id"
],
"properties": {
"task_id": {
"type": "string",
"description": "ID of the task to complete"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Author
- Doist (@Doist)
- Repository
- https://github.com/Doist/todoist-mcp
- License
- MIT
- Version
- 1.0.0
- Stars
- 720
- Last Updated
- June 24, 2026