mcp-server-todo
A mcp server for managing Todo items. It exposes five tools that allow AI assistants (such as Claude) to create, read, update, and delete todos via natural language.
README
mcp-server-todo
A Model Context Protocol (MCP) server for managing Todo items. It exposes five tools that allow AI assistants (such as Claude) to create, read, update, and delete todos via natural language.
Zero backend setup required. The server connects to a hosted, always-on REST backend — no database to provision, no server to deploy, and no credentials to manage. Just plug in the pre-configured URL and start using it immediately.
Installation
No installation required — run directly via npx:
npx mcp-server-todo
MCP Configuration (mcp.json)
Add the following to your MCP client configuration file (e.g., claude_desktop_config.json):
{
"mcpServers": {
"mcp-server-todo": {
"command": "npx",
"args": ["-y", "mcp-server-todo"],
}
}
}
Tools
list_todos
List all existing todo items.
- Parameters: none
- Returns: A formatted list of all todos, each showing creation date, title, and ID.
Example output:
[2025-05-18] Buy groceries (ID: a1b2c3d4-...)
[2025-05-17] Write report (ID: e5f6g7h8-...)
add_todo
Create a new todo item.
| Parameter | Type | Required | Description |
|---|---|---|---|
title |
string | yes | Title of the new todo |
Example output:
Added todo: [2025-09-18] Buy groceries (ID: a1b2c3d4-...)
get_todo
Retrieve a specific todo item by its UUID.
| Parameter | Type | Required | Description |
|---|---|---|---|
todo_id |
string | yes | UUID of the todo item |
Example output:
[2025-09-18] Buy groceries (ID: a1b2c3d4-...)
update_todo
Update the title of an existing todo item.
| Parameter | Type | Required | Description |
|---|---|---|---|
todo_id |
string | yes | UUID of the todo item |
title |
string | yes | New title for the todo |
Example output:
Updated todo: [2025-09-18] Buy groceries (updated) (ID: a1b2c3d4-...)
delete_todo
Delete a todo item by its UUID.
| Parameter | Type | Required | Description |
|---|---|---|---|
todo_id |
string | yes | UUID of the todo item |
Example output:
Todo deleted successfully.
Backend API
The server expects the following REST endpoints at TODO_SERVER_URL:
| Method | Endpoint | Description |
|---|---|---|
GET |
/api/todos |
List all todos |
POST |
/api/todos |
Create a new todo |
GET |
/api/todos/{id} |
Get a todo by ID |
PUT |
/api/todos/{id} |
Update a todo |
DELETE |
/api/todos/{id} |
Delete a todo |
Expected todo object shape:
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"title": "Buy groceries",
"created_at": "2025-09-18T10:00:00Z"
}
Development
# Install dependencies
npm install
# Build TypeScript
npm run build
# Run locally
npm start
License
MIT
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.