Todoist MCP Server
Provides tools for managing Todoist tasks, projects, labels, and comments via the REST and Sync APIs, enabling task creation, updates, deletion, completion, moving, batch operations, and querying 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 Servercreate a task to buy groceries 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 local MCP server for Todoist task management, designed for use with Claude.
Wraps both the Todoist REST v2 and Sync API v1 to provide comprehensive task management capabilities through the Model Context Protocol.
Features
Task CRUD — create, read, update, complete, delete, and move tasks
Batch operations — update multiple tasks in a single API call via the Sync API
Project management — list projects, resolve by name (case-insensitive)
Labels — create, rename, delete, and apply labels to tasks
Comments — read and add comments on tasks (Markdown supported)
Completed tasks — query tasks completed within a date range (weekly review metrics)
Graceful degradation — server starts without Todoist tools if API token is missing
Related MCP server: Todoist MCP
Setup
1. Get your Todoist API token
Go to Todoist Developer Settings and copy your API token.
2. Install
git clone https://github.com/stevesimpson418/todoist-mcp-server.git
cd todoist-mcp-server
# Install dependencies (creates .venv/ in the project directory)
uv syncNew to uv?
uv syncreadspyproject.toml, creates a.venv/virtualenv inside the project folder, and installs all dependencies into it. You don't need to activate it —uv run <command>handles that automatically.
3. Configure environment
cp .env.example .env
# Edit .env and add your TODOIST_API_TOKEN4. Connect to Claude
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
Tip: Run
uv run which pythonfrom the project directory to get the exact path forcommand.
{
"mcpServers": {
"todoist": {
"command": "/absolute/path/to/todoist-mcp-server/.venv/bin/python",
"args": ["-m", "todoist_mcp_server.server"],
"env": {
"TODOIST_API_TOKEN": "your_token_here"
}
}
}
}Adding to Claude Code CLI
Use the claude mcp add command to register the server. This works from any directory.
claude mcp add --scope user todoist-mcp-server \
--transport stdio \
--env TODOIST_API_TOKEN=your_token_here \
-- /path/to/todoist-mcp-server/.venv/bin/python -m todoist_mcp_server.serverReplace /path/to/todoist-mcp-server with the actual path where you cloned the repo.
Tip: Run
uv run which pythonfrom the project directory to get the exact.venv/bin/pythonpath for the command.
The --scope user flag saves to ~/.claude.json so the server is available across all projects.
Without it, the command defaults to local scope (tied to whatever directory you run it from).
To scope it to a single project instead, use --scope project which writes to .mcp.json in
the project root.
To verify the server is registered:
claude mcp listRestart Claude Code after adding. The Todoist tools should appear in the /mcp menu.
Note: Claude Code CLI uses a different configuration from Claude Desktop. The
claude mcp addcommand is the recommended way to register MCP servers — do not add them to~/.claude/settings.jsonas that file is used for permissions and hooks only.
Updating
To pull the latest version and update dependencies:
cd /path/to/todoist-mcp-server
git pull
uv syncRestart Claude Desktop or Claude Code CLI after updating.
Available tools
Tool | Description |
| List all projects |
| Get tasks from a project |
| List all labels |
| Query completed tasks by date range |
| Get comments on a task |
| Create a new task |
| Update task fields |
| Move task to another project |
| Mark task as complete |
| Permanently delete a task |
| Batch update multiple tasks |
| Add a comment to a task |
| Create a new label |
| Rename a label |
| Delete a label |
Usage Examples
Weekly review — see what you accomplished:
1. get_completed_tasks(since="2026-03-28", until="2026-04-04") → completed this week
2. list_todoist_projects() → see all projects
3. get_project_tasks(project_name="Inbox") → triage leftover inbox tasksReorganise tasks across projects:
1. get_project_tasks(project_name="Inbox") → find tasks to sort
2. move_task(task_id="123456", project_name="Home Renovation") → move to the right project
3. batch_update_tasks(tasks=[
{"id": "234567", "labels": ["waiting-on"]},
{"id": "345678", "priority": 3}
]) → bulk tidy-upQuick capture with context:
1. create_task(
content="Review pull request #42",
project_name="Work",
due_string="tomorrow 10am",
priority=3
)
2. add_task_comment(task_id="456789", content="See https://github.com/org/repo/pull/42")Development
# Install dev dependencies
uv sync --dev
# Run tests
uv run pytest -v
# Run tests with coverage
uv run pytest --cov=todoist_mcp_server --cov-report=term-missing
# Lint
uv run ruff check src/ tests/
# Format
uv run ruff format src/ tests/
# Install git hooks
lefthook installLocal .env file
When running the server manually outside Claude Desktop/Code (e.g., for development or
debugging), you can create a .env file in the project root so the server picks up
the API token without passing environment variables:
TODOIST_API_TOKEN=your_token_hereThis is only needed for local development. The Claude Desktop and Claude Code CLI configs
pass this value directly via the env block.
Releases
This project uses release-please for automated versioning and releases. The version is determined by Conventional Commits:
fix:commits bump the patch version (e.g. 0.1.0 → 0.1.1)feat:commits bump the minor version (e.g. 0.1.1 → 0.2.0)BREAKING CHANGEin the commit footer bumps the major version
When commits land on main, release-please opens (or updates) a Release PR that:
Bumps the version in
pyproject.tomlUpdates
CHANGELOG.mdwith grouped entries
Merging the Release PR creates a git tag and GitHub Release automatically.
Packaging & Distribution
This server is currently distributed as source via git. To install:
git clone https://github.com/stevesimpson418/todoist-mcp-server.git
cd todoist-mcp-server
uv syncThis is the standard distribution model for local-stdio MCP servers today. The project is already configured for wheel builds via hatchling, so future distribution options include:
PyPI — publish to PyPI, then install with
uv tool install todoist-mcp-serverorpip install todoist-mcp-server. Would require adding a publish workflow to CI.uvx — once on PyPI,
uvx todoist-mcp-serverruns the server without cloning the repo. Claude Desktop/Code config would point to the uvx-managed binary instead of a local.venv.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/stevesimpson418/todoist-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server