Todo MCP Server
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 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.
📝 Todo MCP Server
A simple Todo List MCP server built for learning!
What is this?
This is an MCP (Model Context Protocol) server that gives AI assistants (like Claude) the ability to manage a todo list for you.
Tools Included:
add_todo - Add a new task
list_todos - See all your tasks
complete_todo - Mark a task as done ✅
delete_todo - Remove a task 🗑️
Related MCP server: Firestore Todo List MCP Server
🚀 Quick Start
1. Install dependencies
cd todo-mcp
npm install2. Build the project
npm run build3. Test it works
node index.js(Press Ctrl+C to stop - it will just wait for input)
🔌 Connect to Claude Desktop
Edit your Claude Desktop config file:
Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Add this to the file:
{
"mcpServers": {
"todo": {
"command": "node",
"args": ["/FULL/PATH/TO/todo-mcp/index.js"]
}
}
}⚠️ Replace /FULL/PATH/TO/ with the actual path to your todo-mcp folder!
Then restart Claude Desktop.
🔌 Connect to Codebuff
Create or edit .codebuff/config.json in your project:
{
"mcpServers": {
"todo": {
"command": "node",
"args": ["/FULL/PATH/TO/todo-mcp/index.js"]
}
}
}Or add to global config at ~/.codebuff/config.json.
Then restart Codebuff.
💡 How to Use
Once connected, just talk to Claude naturally:
"Add 'buy groceries' to my todo list"
"What's on my todo list?"
"Mark todo #1 as complete"
"Delete todo #2"
Claude will automatically use the right tools!
📚 Learning More
Look at index.ts - it's full of comments explaining every part!
Key concepts:
Tools = Actions the AI can take
inputSchema = What info each tool needs
Request Handlers = Code that runs when tools are used
⚠️ Note
Todos are stored in memory only - they disappear when the server restarts. This is intentional for learning! A real app would save to a file or database.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/X4MU-L/todo-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server