MCP Todo 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., "@MCP Todo ServerCreate a task called 'Buy groceries'."
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 Server
Servidor MCP (Model Context Protocol) que expõe um CRUD de tarefas como tools para qualquer host compatível (Claude Desktop, VS Code, MCP Inspector).
O que faz
criar_todo— Cria tarefa com títulolistar_todos— Lista tarefas (filtra por status: todos/pendentes/concluidos)concluir_todo— Marca tarefa como concluída por ID
Related MCP server: Todo Markdown MCP Server
Stack
TypeScript
@modelcontextprotocol/sdk (MCP oficial)
Zod (validação de schemas)
Transporte: stdio
Como rodar
npm install
# Testar com MCP Inspector (UI visual)
npm run inspect
# Rodar direto (usado por clients)
npm run devUsar com Claude Desktop
Adicione ao claude_desktop_config.json:
{
"mcpServers": {
"todo": {
"command": "npx",
"args": ["tsx", "/caminho/para/src/index.ts"]
}
}
}Arquitetura
src/
└── index.ts # Server completo: tools + transporte stdioProtocolo MCP
Host (Claude) → Client → [stdio] → Este Server
├── tools/list → retorna 3 tools
└── tools/call → executa e retorna resultadoAprendizados-chave
MCP Server expõe tools que qualquer host MCP-compatível pode invocar
server.tool(name, description, schema, handler)registra uma toolRetorno padrão:
{ content: [{ type: 'text', text: '...' }] }isError: truesinaliza falha na execuçãoTransporte stdio: comunicação direta entre processos (sem HTTP)
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/costaadiego1989/mcp-todo-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server