Integrates with the Todoist API to provide comprehensive management of projects, tasks, comments, sections, and labels, allowing users to create, read, update, and delete items and retrieve account information.
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 Servercreate a new task 'Buy milk' 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
A Model Context Protocol (MCP) server for integrating with the Todoist API. This server provides tools to manage projects, tasks, comments, sections, labels, and user information.
Features
Projects: Create, read, update, delete, archive, and unarchive projects
Tasks: Create, read, update, delete, close, and reopen tasks with support for due dates, priorities, labels, and assignments
Comments: Create, read, update, and delete comments on tasks and projects
Sections: Create, read, update, and delete sections within projects
Labels: Create, read, update, and delete labels
User: Get user information
Prerequisites
Node.js 18+ (required for native fetch API support)
A Todoist API token (get one from Todoist Settings > Integrations)
Installation
Clone or download this repository
Install dependencies:
npm installBuild the project:
npm run buildNote: If you encounter TypeScript errors about fetch or URLSearchParams not being found, this is expected during development. These are built-in to Node.js 18+ and will work correctly at runtime. The errors should resolve after installing dependencies.
Configuration
Set the TODOIST_API_TOKEN environment variable with your Todoist API token:
export TODOIST_API_TOKEN="your-api-token-here"Or create a .env file (you'll need to install dotenv package if you want to use it):
TODOIST_API_TOKEN=your-api-token-hereUsage
Running the Server
The server communicates via stdio (standard input/output) as per MCP protocol:
npm startOr for development:
npm run devMCP Client Configuration
To use this server with an MCP client (like Claude Desktop, Cursor, etc.), configure it in your MCP settings. Example configuration:
{
"mcpServers": {
"todoist": {
"command": "node",
"args": ["/path/to/todoist-mcp/dist/index.js"],
"env": {
"TODOIST_API_TOKEN": "your-api-token-here"
}
}
}
}Available Tools
Projects
get_projects- Get all active projects (supports pagination)get_project- Get a specific project by IDcreate_project- Create a new projectupdate_project- Update an existing projectdelete_project- Delete a projectarchive_project- Archive a projectunarchive_project- Unarchive a project
Tasks
get_tasks- Get tasks (supports filtering by project, section, label, and pagination)get_task- Get a specific task by IDcreate_task- Create a new taskupdate_task- Update an existing taskdelete_task- Delete a taskclose_task- Close/complete a taskreopen_task- Reopen a completed task
Comments
get_comments- Get comments (supports filtering by project/task and pagination)create_comment- Create a comment on a task or projectupdate_comment- Update a commentdelete_comment- Delete a comment
Sections
get_sections- Get sections (supports filtering by project and pagination)create_section- Create a new sectionupdate_section- Update a sectiondelete_section- Delete a section
Labels
get_labels- Get all labels (supports pagination)create_label- Create a new labelupdate_label- Update a labeldelete_label- Delete a label
User
get_user- Get current user information
Examples
Creating a Task
{
"name": "create_task",
"arguments": {
"content": "Buy groceries",
"project_id": "1234567890",
"due_string": "tomorrow",
"priority": 2,
"labels": ["shopping", "personal"]
}
}Getting All Projects
{
"name": "get_projects",
"arguments": {
"limit": 50
}
}Creating a Project
{
"name": "create_project",
"arguments": {
"name": "My New Project",
"color": "berry_red",
"view_style": "board"
}
}API Documentation
For detailed API documentation, see the Todoist API v1 Documentation.
License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.