Provides comprehensive task and project management through Todoist, including creating/updating/deleting tasks, bulk operations, managing comments with attachments, organizing projects and sections, and supporting rich task attributes like descriptions, due dates, priorities, and labels.
Todoist MCP Server
An MCP (Model Context Protocol) server that connects Claude with Todoist for complete task and project management through natural language.
Quick Start
- Install:
npm install -g @greirson/mcp-todoist
- Get your Todoist API token
- Add to Claude Desktop config with your token
- Ask Claude: "Show me my Todoist projects"
That's it! You can now manage your Todoist tasks directly through Claude.
Table of Contents
- Features
- Installation & Setup
- Tools Overview
- Usage Examples
- Getting Started Workflow
- Best Practices
- Troubleshooting
- Development
Features
- Complete Task Management: Create, read, update, delete, and complete tasks with full attribute support
- Bulk Operations: Efficiently create, update, delete, or complete multiple tasks at once
- Comment System: Add comments to tasks and retrieve comments with attachment support
- Project & Section Organization: Create and manage projects and sections
- Smart Discovery: List projects and sections to find IDs for organization
- Rich Task Attributes: Support for descriptions, due dates, priorities, labels, deadlines, and project assignment
- Natural Language Interface: Use everyday language to manage your Todoist workspace
- Performance Optimized: 30-second caching for GET operations to reduce API calls
- Robust Error Handling: Structured error responses with custom error types
- Input Validation: Comprehensive validation and sanitization of all inputs
- Type Safety: Full TypeScript implementation with runtime type checking
Installation & Setup
Step 1: Install the Package
Step 2: Get Your Todoist API Token
- Log in to your Todoist account
- Go to Settings → Integrations
- Scroll down to the Developer section
- Copy your API token (keep this secure!)
Step 3: Configure Claude Desktop
Add the server to your Claude Desktop configuration file:
On macOS/Linux:
- File location:
~/.config/claude_desktop_config.json
On Windows:
- File location:
%APPDATA%\Claude\claude_desktop_config.json
Add this configuration:
⚠️ Important: Replace your_api_token_here
with your actual Todoist API token from Step 2.
Step 4: Restart Claude Desktop
Close and reopen Claude Desktop to load the new MCP server.
Step 5: Verify Installation
In Claude Desktop, try asking:
You should see a list of your Todoist projects, confirming the integration is working!
Tools Overview
The server provides 15 tools organized by entity type:
Task Management
- Todoist Task Create: Create new tasks with full attribute support
- Todoist Task Get: Retrieve and filter tasks by various criteria
- Todoist Task Update: Update existing tasks (found by name search)
- Todoist Task Complete: Mark tasks as complete
- Todoist Task Delete: Remove tasks
Bulk Task Operations
- Todoist Tasks Bulk Create: Create multiple tasks at once for improved efficiency
- Todoist Tasks Bulk Update: Update multiple tasks based on search criteria
- Todoist Tasks Bulk Delete: Delete multiple tasks based on search criteria
- Todoist Tasks Bulk Complete: Complete multiple tasks based on search criteria
Comment Management
- Todoist Comment Create: Add comments to tasks with optional file attachments
- Todoist Comment Get: Retrieve comments for tasks or projects
Project Management
- Todoist Project Create: Create new projects with optional color and favorite status
- Todoist Project Get: List all projects with their IDs and names
Section Management
- Todoist Section Create: Create sections within projects
- Todoist Section Get: List sections within projects
Troubleshooting
Common Issues
"No Todoist projects found" or connection errors:
- Verify your API token is correct
- Check that the token is properly set in your claude_desktop_config.json
- Ensure there are no extra spaces or quotes around your token
MCP server not loading:
- Confirm the package is installed globally:
npm list -g @greirson/mcp-todoist
- Restart Claude Desktop completely
- Check the configuration file path is correct for your operating system
Permission errors:
- On macOS/Linux, you may need to create the config directory:
mkdir -p ~/.config
- Ensure Claude Desktop has permission to read the config file
Usage Examples
Project & Section Setup
Task Creation & Management
Bulk Operations
Comment Management
Task Discovery
Getting Started Workflow
1. First Steps
2. Basic Task Management
3. Advanced Organization
4. Bulk Operations
Best Practices
- Start Simple: Begin with basic task creation and project viewing
- Use Natural Language: Ask questions as you normally would
- Leverage Bulk Operations: Use bulk tools when working with multiple tasks
- Organize First: Set up projects and sections before creating many tasks
- Regular Cleanup: Use bulk operations to clean up completed or outdated tasks
Development
Building from source
Development Commands
Architecture
The codebase is organized into focused modules:
src/index.ts
: Main server entry point with request routingsrc/handlers/
: Business logic separated by domain (tasks, projects, comments)src/types.ts
: TypeScript type definitionssrc/type-guards.ts
: Runtime type validationsrc/validation.ts
: Input validation and sanitizationsrc/errors.ts
: Custom error types with structured handlingsrc/cache.ts
: In-memory caching for performance optimizationsrc/tools.ts
: MCP tool definitions and schemas
Changelog
v0.5.1 (Latest)
- Fixed Deadline Parameter: Changed
deadline
todeadline_date
parameter (YYYY-MM-DD format) for proper Todoist API compatibility - Deadline Display: Task retrieval now properly displays deadline information alongside due dates
- Improved Documentation: Updated CLAUDE.md with clarification on due dates vs deadlines
v0.5.0
- Bulk Operations: Added 4 new bulk tools for efficient multi-task operations (create, update, delete, complete)
- Comment System: Full comment support with create and retrieve functionality, including file attachments
- Enhanced Search: Flexible search criteria for bulk operations (project, priority, date ranges, content matching)
- Improved Documentation: Updated README with comprehensive examples for all new features
v0.4.0
- Modular Architecture: Refactored monolithic code into focused modules
- Performance Optimization: Added 30-second caching for GET operations
- Robust Error Handling: Custom error types with structured error responses
- Input Validation: Comprehensive validation and sanitization
- Code Quality: Added ESLint, Prettier, and Jest testing framework
- Type Safety: Eliminated all
any
types, full TypeScript implementation
v0.3.0
- Complete Project Management: Added project and section creation tools
- Enhanced Organization: Full support for project_id and section_id in task operations
- Improved Tool Names: Cleaner naming convention (e.g., "Todoist Task Create")
- Discovery Tools: Added tools to list projects and sections for ID discovery
v0.2.0
- Enhanced Task Creation: Added support for labels and deadline parameters
- Improved API Compliance: Better alignment with Todoist API v2 specification
v0.1.0 (Initial Release)
- Basic task management (create, read, update, delete, complete)
- Natural language task search and filtering
- Support for descriptions, due dates, and priority levels
Contributing
Contributions are welcome! Feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Issues and Support
If you encounter any issues or need support, please file an issue on the GitHub repository.
This server cannot be installed
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
An MCP server that connects Claude with Todoist for complete task and project management through natural language.
Related MCP Servers
- AsecurityAlicenseAqualityIntegrates Claude with Todoist for natural language task management, supporting project and section organization, task creation, updating, completion, and deletion using everyday language.Last updated -193512JavaScriptMIT License
- AsecurityAlicenseAqualityAn MCP server that integrates Claude with Todoist, enabling natural language task management including creating, updating, completing, and deleting tasks.Last updated -5245153JavaScriptMIT License
- -securityAlicense-qualityA Model Context Profile server that enables Claude to interact with Todoist, allowing users to create, retrieve, update, and manage tasks through natural language commands.Last updated -1PythonMIT License
- AsecurityAlicenseAqualityAn MCP server implementation that integrates with Backlog API, enabling project management operations including issues, projects, and wikis through natural language interactions.Last updated -12533TypeScriptMIT License