todoist-mcp
Provides tools for managing Todoist tasks, including listing, adding, updating, completing, deleting, and moving tasks, with support for subtask hierarchy and filtering.
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-mcplist my tasks for today"
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 — Cloudflare Worker
A Model Context Protocol (MCP) server for Todoist, hosted on Cloudflare Workers. Lets any AI assistant (Claude, GPT, Gemini, etc.) read and manage your Todoist tasks.
Built against the Todoist unified API v1 (
https://api.todoist.com/api/v1). The older REST v2 / Sync v9 APIs are deprecated.
How it works
Telegram message
↓
Your bot
↓
LLM (Claude / GPT / Gemini / etc.)
↓ calls tools via MCP JSON-RPC
This Worker ←→ Todoist APIThe Worker exposes a single POST / endpoint that speaks MCP JSON-RPC. Your bot connects to it and the LLM can call any of the 6 tools to read/write tasks.
Related MCP server: Todoist MCP Server
Your data model
You use Todoist's task/subtask hierarchy to simulate projects:
Todoist concept | Your meaning |
Top-level task (no parent) | "Project" — e.g. Create telegram assistant bot |
Subtask (has parent_id) | Actual step — e.g. Set up todoist MCP |
Top-level task (standalone) | Simple task — e.g. Mop the floor |
This matters for the AI: when you say "add a task to my Telegram bot project", the AI should find the parent task ID first, then call add_task with that parent_id.
Tools
Tool | What it does |
| List all tasks, optionally filtered. Use |
| Create a top-level task or subtask (pass |
| Edit title, description, due date, priority, or labels. |
| Mark a task done. |
| Delete a task (and all its subtasks). |
| Move a subtask under a different parent (different "project"), or promote to top-level. |
Priority values
1= Normal (default)2= Medium3= High4= Urgent
Filtering
The filter parameter accepts Todoist filter query syntax (e.g. "today", "overdue", "@work & p1"). When set, it takes precedence over mode/parent_id/label and returns a flat list.
Setup
1. Install dependencies
npm install2. Set your secrets
Get your Todoist token from todoist.com/app/settings/integrations/developer.
# Your Todoist API token
npx wrangler secret put TODOIST_API_TOKEN
# A shared secret your bot sends to authenticate to this Worker.
# Generate a long random string, e.g.: openssl rand -hex 32
npx wrangler secret put MCP_SECRETWhy MCP_SECRET? The Worker is on the public internet. Without this gate, anyone who finds the URL could read, edit, and delete your entire Todoist. Your bot must send it as
Authorization: Bearer <MCP_SECRET>on every request.
3. Deploy
npm run deployYour endpoint: https://todoist-mcp.<your-subdomain>.workers.dev
Local development
# Put both secrets in .dev.vars (already gitignored):
# TODOIST_API_TOKEN=your_token_here
# MCP_SECRET=pick_a_long_random_string_here
npm run dev
# → http://localhost:8787Connecting to your AI
See ai-system-prompt.md for the system prompt block to add to your Telegram bot so the AI knows how to use these tools correctly.
How to call a tool (raw JSON-RPC)
Every request needs the Authorization: Bearer <MCP_SECRET> header.
POST https://todoist-mcp.<your-subdomain>.workers.dev
Authorization: Bearer <your MCP_SECRET>
Content-Type: application/json
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "add_task",
"arguments": {
"content": "Set up todoist MCP",
"parent_id": "12345678",
"due_string": "tomorrow",
"priority": 3
}
}
}Discover available tools
{ "jsonrpc": "2.0", "id": 1, "method": "tools/list", "params": {} }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.
Related MCP Servers
- Alicense-qualityAmaintenanceAn MCP server that enables LLMs to interact with Todoist tasks, projects, and other features through the Todoist API.Last updated335532MIT
- Flicense-quality-maintenanceA self-hosted MCP server that wraps the official Todoist AI package to provide over 35 tools for managing tasks and projects. It features a Dockerized setup with automatic TLS, enabling seamless integration with AI clients like Claude and Cursor.Last updated335
- Alicense-qualityDmaintenanceAn MCP server that provides AI assistants with full access to Todoist tasks, projects, labels, and filters. It enables comprehensive task management, project organization, and productivity tracking through a wide range of specialized tools.Last updated620MIT
- Alicense-qualityDmaintenanceA proof-of-concept MCP server that interacts with Todoist using OAuth-based authorization and is deployed on Cloudflare Workers.Last updated4MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
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/lawheitung/todoist-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server