Todo MCP Server

Todo MCP Server

A TypeScript-based server that enables AI agents to create, prioritize, and manage ordered task lists for complex projects. It provides tools for task tracking, status filtering, and progress statistics with persistent storage.

Category
Visit Server

README

Todo MCP Server

A TypeScript MCP (Model Context Protocol) server that provides AI agents with powerful task management capabilities. This server enables Claude and other AI assistants to create, organize, and manage ordered task lists - perfect for breaking down complex projects into manageable, prioritized steps.

Installation

Prerequisites

  • Node.js 18.0.0 or higher
  • npm or yarn

Setup

  1. Clone this repository
  2. Install dependencies:
    npm install
    
  3. Build the project:
    npm run build
    

Claude Desktop Configuration

To use this server with Claude Desktop, add the following to your Claude Desktop config file:

Windows

Edit %APPDATA%\Claude\claude_desktop_config.json:

{
  "mcpServers": {
    "todo": {
      "command": "node",
      "args": ["path/to/todo-mcp-server/dist/index.js"]
    }
  }
}

macOS

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "todo": {
      "command": "node",
      "args": ["/path/to/todo-mcp-server/dist/index.js"]
    }
  }
}

Linux

Edit ~/.config/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "todo": {
      "command": "node",
      "args": ["/path/to/todo-mcp-server/dist/index.js"]
    }
  }
}

Note: Replace path/to/todo-mcp-server with the actual path to your installed server.

Features

Core Task Management

  • Create Todo Items - Add new tasks with titles and optional descriptions
  • Get Next Task - Retrieve the next priority task to work on
  • Update Tasks - Modify task titles, descriptions, or status
  • Complete Tasks - Mark tasks as completed
  • Delete Tasks - Remove tasks from the list
  • Task Statistics - Get overview of pending and completed tasks

Advanced Organization

  • Ordered Task Lists - Tasks are automatically ordered by creation priority
  • Status Filtering - Filter tasks by pending or completed status
  • Bulk Operations - Clear all tasks when needed
  • Persistent Storage - Tasks persist across server restarts

MCP Resources

The server exposes several resources for easy data access:

  • todo://todos - All todo items
  • todo://todos/pending - Only pending tasks
  • todo://todos/completed - Only completed tasks
  • todo://todos/next - The next task to work on

Showcase

image image image

Perfect for Complex Task Breakdown

This server excels at helping AI agents break down complex projects into manageable steps:

Example: "Build a Web Application"

Agent: "I need to build a web application with user authentication"

Using the todo server, the agent can:
1. Create main tasks: "Set up project structure", "Implement authentication", "Build UI"
2. Break down each task into subtasks
3. Work through them systematically using get_next_todo
4. Track progress with completion status
5. Get statistics on overall progress

Example Workflow

// Agent creates ordered tasks
create_todo("Set up project structure")
create_todo("Install dependencies") 
create_todo("Create user authentication system")
create_todo("Build login/register components")
create_todo("Implement protected routes")
create_todo("Add error handling")
create_todo("Write tests")
create_todo("Deploy application")

// Agent works through tasks systematically
get_next_todo() // Returns "Set up project structure"
complete_todo("task-id-1")
get_next_todo() // Returns "Install dependencies"

Usage Examples

Once configured, you can interact with the todo server through Claude Desktop:

Creating and Managing Tasks

You: "I need to plan a website redesign project"

Claude: I'll help you break this down into manageable tasks using the todo system.

[Claude creates tasks like:]
- Research current design trends
- Analyze user feedback
- Create wireframes
- Design new layout
- Implement responsive design
- Test across devices
- Launch new design

Working Through Tasks

You: "What should I work on next?"

Claude: [Uses get_next_todo] 
Let me check your next priority task...

Your next task is: "Research current design trends"
Description: "Look into modern web design patterns, color schemes, and user experience best practices"

Tracking Progress

You: "How am I doing on my project?"

Claude: [Uses get_todo_stats]
Here's your current progress:
- Total tasks: 15
- Completed: 8
- Pending: 7

You're making great progress! 53% complete.

Available Tools

Tool Description
create_todo Create a new todo item with title and optional description
get_todo Retrieve a specific todo item by ID
get_todos Get all todos with optional status filtering
get_next_todo Get the next priority todo item
update_todo Update an existing todo item
complete_todo Mark a todo item as completed
delete_todo Delete a todo item
get_todo_stats Get statistics about todo items
clear_all_todos Clear all todo items

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured