MCP Todo
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., "@MCP Todoadd 'buy groceries' to my todo list"
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.
MCP Todo
A todo list server built with the Model Context Protocol (MCP) that supports both stdio and HTTP transports.
Quick Start
npm install
# For HTTP server (easier testing)
npm run dev:http
# For MCP stdio (client integration)
MCP_STDIO=1 npm run devSetup
npm install
npm run buildUsage
Stdio Transport (MCP Client Integration)
For use with MCP clients like Cursor:
MCP_STDIO=1 npm run devConfigure in Cursor's .cursor/mcp.json:
{
"mcpServers": {
"todo-mcp": {
"command": "npx",
"args": ["-y", "tsx", "src/server.ts"],
"env": {
"MCP_STDIO": "1"
}
}
}
}HTTP Transport (Streamable HTTP)
For HTTP-based access with session management:
npm run dev MCP_STDIO=1 # Starts MCP stdio server
npm run dev:http # Starts HTTP server on port 3000
# or directly: npx tsx src/http.tsThe server exposes endpoints at http://localhost:3000/mcp:
POST /mcp- JSON-RPC requestsGET /mcp- SSE stream for server notificationsDELETE /mcp- End session
Authentication
Set TODO_MCP_TOKEN environment variable to enable bearer token authentication:
TODO_MCP_TOKEN=your-secret-token npm run devThen include in requests:
Authorization: Bearer your-secret-tokenFeatures
Add todos with unique IDs
List all todos with structured output
Toggle todo completion status
Remove todos by ID
Persistent JSON storage in
~/.mcp-todos.jsonSession-based HTTP transport with SSE support
Optional bearer token authentication
Available Tools
list_todos- Get all todos in structured formatadd_todo- Add a new todo (requires title)toggle_todo- Toggle completion status (requires id)remove_todo- Delete a todo (requires id)
Resources
todos://list- JSON resource containing all todos
Architecture
src/server.ts- Core MCP server with todo logic and stdio transportsrc/http.ts- HTTP transport wrapper with Express and session management
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Appeared in Searches
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CalamityAdam/mcp-todo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server