Skip to main content
Glama

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ítulo

  • listar_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 dev

Usar 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 stdio

Protocolo MCP

Host (Claude) → Client → [stdio] → Este Server
                                      ├── tools/list → retorna 3 tools
                                      └── tools/call → executa e retorna resultado

Aprendizados-chave

  • MCP Server expõe tools que qualquer host MCP-compatível pode invocar

  • server.tool(name, description, schema, handler) registra uma tool

  • Retorno padrão: { content: [{ type: 'text', text: '...' }] }

  • isError: true sinaliza falha na execução

  • Transporte stdio: comunicação direta entre processos (sem HTTP)

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.

  • A basic MCP server to operate on the Postman API.

  • An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform

View all MCP Connectors

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/costaadiego1989/mcp-todo-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server