MCP Todo Server
Click on "Deploy 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: MCP Todo List
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 deployed
Maintenance
Related MCP Connectors
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Create, list, and complete todo items through MCP.
- mcpOAuthnet.todoist
Official Todoist MCP server for AI assistants to manage tasks, projects, and workflows.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceThis MCP server provides tools to manage a todo list with CRUD operations, enabling listing, creating, updating, and deleting todos.-
- FlicenseNot gradedqualityDmaintenanceMCP server that exposes a TODO list API to AI assistants, enabling natural language management of tasks with create, read, update, and delete operations.-
- FlicenseNot gradedqualityBmaintenanceMCP server for managing a todo list with gamified pomodoro features, exposing set_tasks and list_tasks tools.-
- FlicenseNot gradedqualityBmaintenanceMCP server that provides tools to create and list tasks by consuming a REST API, allowing LLMs to manage a TODO list via natural language.-