Community MCP server for Todoist personal task management. Agents can create and complete tasks, manage projects, set due dates and priorities, organize with labels, and query tasks using Todoist's filter syntax. Simple and focused on individual productivity. Ideal for personal assistant agents managing daily tasks and to-do lists.
npx -y todoist-mcp-server
{
"mcpServers": {
"todoist": {
"env": {
"TODOIST_API_TOKEN": "your-api-token"
},
"args": [
"-y",
"todoist-mcp-server"
],
"command": "npx"
}
}
}Create Todoist task
{
"type": "object",
"required": [
"content"
],
"properties": {
"content": {
"type": "string"
},
"priority": {
"type": "integer"
}
}
}// Input
{
"content": "Buy groceries",
"priority": 3
}// Output
{
"id": "123"
}List Todoist tasks
{
"type": "object",
"required": [],
"properties": {
"filter": {
"type": "string"
}
}
}// Input
{
"filter": "today"
}// Output
{
"tasks": [
{
"id": "123",
"content": "Buy groceries"
}
]
}Community MCP server for Todoist personal task management. Agents can create and complete tasks, manage projects, set due dates and priorities, organize with labels, and query tasks using Todoist's filter syntax. Simple and focused on individual productivity. Ideal for personal assistant agents managing daily tasks and to-do lists.
Todoist provides 2 tools including create_task, get_tasks.
Todoist offers a free tier with 500 calls per month. For higher usage, paid plans start at €0/month.
You can install Todoist using the following command: npx -y todoist-mcp-server. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
Todoist is listed under the Productivity category in the AgentForge MCP registry.
Todoist has a current uptime of 99.85% with an average response time of 150ms.
To connect Todoist, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Todoist's tools via the Model Context Protocol.