Todoist Python MCP Server
Provides tools for task management in Todoist, including creating tasks with various attributes, retrieving tasks with filtering options, updating task details, marking tasks as complete, and deleting 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 Python MCP Serveradd a task to buy groceries tomorrow"
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 that allows clients like Claude to interact with Todoist, enabling task management capabilities through natural language. The server acts as an intermediary between clients and the Todoist API, handling authentication, data transformation, and command processing. This is a Python version
Features
Task Creation: Create new tasks with required content and optional attributes
Task Retrieval: Get task by ID or list tasks with filtering options
Task Management: Update task attributes, mark tasks as complete, delete tasks
Related MCP server: Todoist MCP Server
Prerequisites
Python 3.12
uv
A Todoist account and API token
How to get Todoist API Token
Login to your Todoist account
Go to User Settings -> Integrations -> Developer
Copy API token
Usage with Claude Desktop
Run via UVX (without cloning)
You can run the server directly from GitHub using UVX:
uvx --from https://github.com/Johnxjp/todoist-mcp-python.git mcp-server-todoistThen add this configuration to your Claude settings:
{
"mcpServers": {
"todoist-server": {
"command": "uvx",
"args": [
"--from",
"https://github.com/Johnxjp/todoist-mcp-python.git",
"mcp-server-todoist"
],
"env": {
"TODOIST_API_TOKEN": "YOUR_API_TOKEN"
}
}
}
}Run from cloned repository
If you prefer to clone the repository, use these commands:
git clone git@github.com:Johnxjp/todoist-mcp-python.gitThen add to your Claude config file:
{
"mcpServers": {
"todoist-server": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"--with",
"todoist_api_python",
"mcp",
"run",
"/full/path/to/todoist_server.py"
],
"env": {
"TODOIST_API_TOKEN": "YOUR_API_TOKEN"
}
}
}
}Available Tools
The server provides the following tools for Claude to use:
create_task: Create a new task in Todoist
Required: content (title of the task)
Optional:
description,
due_date,
priority,
project_id,
section_id,
labels
get_tasks: Get a list of tasks and Ids from Todoist with various filters
Optional:
project_id,
project_name,
task_name,
priority,
labels,
is_overdue,
limit
update_task: Update an existing task by searching for it by name
Required: task_id
Optional:
content,
description,
labels,
priority,
due_date (YYYY-MM-DD),
deadline_date (YYYY-MM-DD)
delete_task: Delete a task by searching for it by name
Required: task_id
complete_task: Mark a task as complete by searching for it by name
Required: task_id
Example Interactions
Here are some examples of how Claude can interact with Todoist through this MCP server:
"Add a task to buy groceries"
"Show me all my urgent tasks"
"What tasks are due today?"
"Mark the laundry task as done"
"Change the priority of my dentist appointment to urgent"
Security Considerations
The server securely handles your Todoist API token through environment variables
Never share your
.envfile or expose your API tokenThe server runs locally and communicates only with the Todoist API
License
Acknowledgements
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-qualityDmaintenanceA Model Context Protocol server that integrates with Notion's API to manage personal todo lists, allowing users to view, add, and update tasks directly from Claude.Last updated31MIT
- AlicenseAqualityDmaintenanceA Python server that enables Claude to interact with Todoist's task management API, allowing users to create, manage, and organize tasks directly through Claude's interface.Last updated179MIT
- Alicense-qualityFmaintenanceA Model Context Protocol server that enables advanced task and project management in Todoist via Claude Desktop and other MCP-compatible clients.Last updated922MIT
- AlicenseBqualityDmaintenanceProvides Todoist task management capabilities to AI assistants through the Model Context Protocol. Enables users to interact with their Todoist projects and tasks directly through Claude Desktop using natural language commands.Last updated33291MIT
Related MCP Connectors
Persistent context for Claude. Your AI always knows your projects and next actions across sessions.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
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/Johnxjp/todoist-mcp-python'
If you have feedback or need assistance with the MCP directory API, please join our Discord server