MCP server for Todoist task management integration
Valid MCP server (2 strong, 3 medium validity signals). 1 code issue detected. 7 known CVEs in dependencies (0 critical, 5 high severity) Imported from the Official MCP Registry. 2 finding(s) downgraded by scanner intelligence.
12 files analyzed ยท 9 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: YOUR_API_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-ecfaria-todoist-mcp": {
"env": {
"YOUR_API_KEY": "your-your-api-key-here"
},
"args": [
"-y",
"@ecfaria/todoist-mcp-server"
],
"command": "npx"
}
}
}From the project's GitHub README.
A Model Context Protocol (MCP) server for Todoist task management, enabling Claude to interact with your Todoist tasks and projects.
# Clone the repository
git clone <your-repo-url>
cd todoist-mcp
# Install dependencies
npm install
# Build the project
npm run build
Create a .env file in the project root:
cp .env.example .env
Edit .env and add your Todoist API token:
TODOIST_API_TOKEN=your_actual_token_here
LOG_LEVEL=error
Add the server to your Claude Desktop configuration file:
Location:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonConfiguration:
{
"mcpServers": {
"todoist": {
"command": "node",
"args": ["/absolute/path/to/todoist-mcp/build/server.js"],
"env": {
"TODOIST_API_TOKEN": "your_actual_token_here"
}
}
}
}
Important: Replace /absolute/path/to/todoist-mcp with the actual absolute path to your project directory.
After updating the configuration, restart Claude Desktop for the changes to take effect.
Create a new task in Todoist with optional project, due date, priority, labels, and parent task for subtasks.
Parameters:
content (required): The task content/titledescription (optional): Task descriptionproject_id (optional): Project ID to add the task tosection_id (optional): Section ID within the projectdue_date (optional): Due date in natural language or YYYY-MM-DD formatpriority (optional): Priority level: 1 (normal), 2 (medium), 3 (high), 4 (urgent)labels (optional): Array of label namesparent_id (optional): Parent task ID to create a subtaskparent_task_name (optional): Parent task name to search for (alternative to parent_id)Examples:
Create a task "Write report" due tomorrow with high priority
Create a task "Buy groceries" in the Shopping project
Create a task "Team meeting" due "next Monday at 2pm"
Create a subtask "Buy milk" under parent task "Go to the supermarket"
Create a subtask "Review slides" under task 8237492837
Add subtask "Call John" to the task "Prepare presentation"
List active tasks with optional filters for project, section, label, or custom Todoist filter.
Parameters:
project_id (optional): Filter by project IDsection_id (optional): Filter by section IDlabel (optional): Filter by label namefilter (optional): Todoist filter query (e.g., "today", "overdue", "p1")limit (optional): Maximum number of tasks to return (default: 50, max: 200)Examples:
List all my tasks
List tasks in project "Work"
List tasks due today
List all overdue tasks with limit 20
Get detailed information about a specific task including all metadata.
Parameters:
task_id (required): The task ID to retrieveExamples:
Get details for task 123456789
Show me task 987654321
Update an existing task with new content, description, due date, priority, or labels.
Parameters:
task_id (required): The task ID to updatecontent (optional): New task contentdescription (optional): New task descriptiondue_date (optional): New due date (natural language or YYYY-MM-DD)priority (optional): New priority level (1-4)labels (optional): New labels arrayExamples:
Update task 123 to have priority 4
Change task 456 due date to "next Friday"
Update task 789 content to "Revised meeting agenda"
Mark a task as completed.
Parameters:
task_id (required): The task ID to completeExamples:
Complete task 123456
Mark task 789012 as done
List all projects in Todoist, including inbox and shared projects.
Parameters: None
Examples:
List all my projects
Show me all my Todoist projects
Search for tasks by text in their content or description.
Parameters:
query (required): Text to search for in task content and descriptionlimit (optional): Maximum number of tasks to return (default: 50, max: 200)Examples:
Search for tasks containing "meeting"
Find all tasks with "budget" in them
npm run build
npm run dev
npm test
npm run test:watch
The server respects Todoist's API rate limit of 450 requests per 15 minutes. When the limit is exceeded, the API returns a 429 error which is caught and reported with a helpful error message. You can retry your request after waiting.
All errors are returned with descriptive messages. Common errors include:
.env configuration or Claude Desktop configThe server supports Todoist's natural language date parsing. You can use phrases like:
You can also use standard date formats:
todoist-mcp/
โโโ src/
โ โโโ server.ts # Main MCP server entry point
โ โโโ types/ # TypeScript type definitions
โ โโโ api/ # Todoist API client and errors
โ โโโ tools/ # MCP tool implementations
โ โโโ utils/ # Utilities (logger, rate limiter)
โโโ tests/
โ โโโ unit/ # Unit tests
โโโ build/ # Compiled JavaScript output
โโโ package.json
โโโ tsconfig.json
โโโ .env.example
โโโ README.md
io.github.ecfaria/todoist-mcp@ecfaria/todoist-mcp-servernpm version <patch|minor|major>).npm run build.npm publish --access public (scoped packages default to private).mcp-publisher validate.mcp-publisher publish.mcpName) to package.json.server.json reference for registry publication.@ecfaria/todoist-mcp-server to avoid collisions.claude_desktop_config.json is absolute and correctnpm run build).env file or Claude Desktop configContributions are welcome! Please feel free to submit a Pull Request.
MIT
Built with:
Be the first to review this server!
by Modelcontextprotocol ยท Productivity
Knowledge graph-based persistent memory across sessions
by Modelcontextprotocol ยท Productivity
Time and timezone conversion capabilities for your AI assistant
by Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace ยท Developer Tools
Create, build, and publish Python MCP servers to PyPI โ conversationally.
by Microsoft ยท Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
by mcp-marketplace ยท Developer Tools
Scaffold, build, and publish TypeScript MCP servers to npm โ conversationally