Defines todo schema using TypeScript typing, enabling structured task management with proper type definitions for integration
Claude Todo MCP Server
Add persistent task management to any AI coding assistant in Cursor, Windsurf, and other IDEs.
This MCP server replicates Claude Code's todo system, giving your AI assistant the ability to:
- Track complex multi-step tasks across sessions
- Break down large features into manageable pieces
- Remember progress when you switch between projects
- Enforce single in-progress task focus
Why You Want This
Without task management, AI assistants:
- ❌ Forget what they were working on between conversations
- ❌ Lose track of multi-step implementations
- ❌ Can't prioritize or organize complex work
- ❌ Leave tasks half-finished when you switch contexts
With this MCP server:
- ✅ Persistent memory - Tasks survive across sessions
- ✅ Project-scoped - Each workspace gets its own todo list
- ✅ Automatic tracking - AI knows when to create/update tasks
- ✅ Progress visibility - See exactly what's completed/pending
- ✅ Focus enforcement - Only one task in-progress at a time
Quick Start
No installation required! Just add this to your MCP configuration:
- Cursor: Create
.cursor/mcp.json
in your project root - Other IDEs: Add to your MCP configuration file
Restart your IDE and try: "Create a todo list for adding user authentication"
The system automatically downloads the package and sets up everything on first use!
What You Get
Once configured, your AI assistant will automatically:
Create todos for complex tasks:
Track progress visually:
Maintain focus:
API Reference
TodoRead
- Parameters: None
- Returns:
{todos: Todo[]}
TodoWrite
- Parameters:
{todos: Todo[]}
- Returns:
{success: boolean, count: number}
Todo Schema
Contributing
- Fork the repository
- Create a feature branch
- Add tests for new functionality
- Submit a pull request
License
MIT License - see LICENSE file for details.
Related Projects
Adds persistent task management to AI coding assistants in IDEs, allowing them to track multi-step tasks across sessions and maintain organized workflow with project-scoped todo lists.
Related Resources
Related MCP Servers
- -securityAlicense-qualityProvides code manipulation, execution, and version control capabilities. It allows AI assistants to read, write, and execute code while maintaining a history of changes.Last updated -8PythonMIT License
- AsecurityFlicenseAqualityFacilitates AI session handoffs and next steps tracking through project-based organization, supporting task prioritization and seamless workflow management.Last updated -86JavaScript
- -securityFlicense-qualityA comprehensive memory management system for Cursor IDE that allows AI assistants to remember, recall, and manage information across conversations through a user-friendly interface.Last updated -2Python
- -securityFlicense-qualityA Model Context Protocol server that provides persistent task management capabilities for AI assistants, allowing them to create, update, and track tasks beyond their usual context limitations.Last updated -1TypeScript