Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Todo MCP Serveradd a task to research competitors for the project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Clone this repository
Install dependencies:
npm installBuild 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:
macOS
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
Linux
Edit ~/.config/Claude/claude_desktop_config.json:
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 itemstodo://todos/pending- Only pending taskstodo://todos/completed- Only completed taskstodo://todos/next- The next task to work on
Showcase
Perfect for Complex Task Breakdown
This server excels at helping AI agents break down complex projects into manageable steps:
Example: "Build a Web Application"
Example Workflow
Usage Examples
Once configured, you can interact with the todo server through Claude Desktop:
Creating and Managing Tasks
Working Through Tasks
Tracking Progress
Available Tools
Tool | Description |
| Create a new todo item with title and optional description |
| Retrieve a specific todo item by ID |
| Get all todos with optional status filtering |
| Get the next priority todo item |
| Update an existing todo item |
| Mark a todo item as completed |
| Delete a todo item |
| Get statistics about todo items |
| Clear all todo items |