Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Claude Todo Emulator

    This is an MCP server that emulates Claude Code's task management system, providing persistent todo functionality for AI coding assistants in IDEs like Cursor, Windsurf, and others.

    22 stars
    Python
    Updated Oct 9, 2025

    Table of Contents

    • Quick Start
    • Cursor IDE
    • Codex CLI
    • Other IDEs
    • What You Get
    • API Reference
    • Contributing
    • License
    • Related Projects

    Table of Contents

    • Quick Start
    • Cursor IDE
    • Codex CLI
    • Other IDEs
    • What You Get
    • API Reference
    • Contributing
    • License
    • Related Projects

    Documentation

    Claude Todo MCP Server

    PyPI Version

    PyPI Downloads

    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

    Quick Start

    No installation required! Just add this to your MCP configuration:

    Cursor IDE

    Create .cursor/mcp.json in your project root:

    json
    {
      "mcpServers": {
        "task-manager": {
          "command": "uvx",
          "args": ["claude-todo-emulator"]
        }
      }
    }

    Codex CLI

    Create config.toml at your project root:

    toml
    [mcp_servers.task-manager]
    command = "uvx"
    args = ["claude-todo-emulator"]

    Other IDEs

    Add the JSON configuration above to your MCP settings 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:

    code
    You: "Add dark mode support with user preferences"
    AI: "I'll create a todo list for this multi-step feature:
    - ✅ Add theme context and state management
    - 🔄 Create dark mode CSS variables and styles
    - ⏳ Build settings UI for theme switching
    - ⏳ Add persistence to localStorage
    - ⏳ Update existing components for theme support"

    Track progress visually:

    code
    You: "What's the status on the authentication system?"
    AI: "Current authentication tasks:
    - ✅ Set up JWT middleware
    - ✅ Create login/signup endpoints
    - 🔄 Building user profile management (in progress)
    - ⏳ Add password reset flow
    - ⏳ Implement role-based permissions"

    Maintain focus:

    code
    You: "Let's also add email notifications"
    AI: "I'll add that to the todo list, but let me finish the current user profile task first to maintain focus."

    API Reference

    TodoRead

    • Parameters: None
    • Returns: {todos: Todo[]}

    TodoWrite

    • Parameters: {todos: Todo[]}
    • Returns: {success: boolean, count: number}

    Todo Schema

    typescript
    {
      id: string;
      content: string;
      status: "pending" | "in_progress" | "completed";
      priority: "high" | "medium" | "low";
      created_at: string;
      updated_at: string;
      metadata?: object;
    }

    Contributing

    1. Fork the repository

    2. Create a feature branch

    3. Add tests for new functionality

    4. Submit a pull request

    License

    MIT License - see LICENSE file for details.

    Related Projects

    • Model Context Protocol
    • FastMCP
    • Claude Code

    Similar MCP

    Based on tags & features

    • PE

      Personalizationmcp

      Python·
      12
    • MA

      Mayamcp

      Python·
      27
    • BI

      Biothings Mcp

      Python·
      25
    • GG

      Gget Mcp

      Python·
      17

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • PE

      Personalizationmcp

      Python·
      12
    • MA

      Mayamcp

      Python·
      27
    • BI

      Biothings Mcp

      Python·
      25
    • GG

      Gget Mcp

      Python·
      17

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k