TODO MCP Server
TODO MCP CLI y servidor
Este repositorio contiene una implementación mínima del Protocolo de contexto de modelo (MCP) para una aplicación de lista de tareas pendientes, que incluye:
Servidor FastAPI (
server/): expone un punto final/toolspara el descubrimiento de herramientas y un punto final/rpcpara llamadas JSON-RPC para realizar operaciones en tareas.Cliente CLI (
client/cli.py): una interfaz de línea de comandos de Python que interactúa con un LLM (a través de OpenAI) y el servidor MCP para crear, enumerar y completar tareas mediante llamadas de función.
Características
Agregar tareas con título, contenido y fecha de vencimiento opcional
Enumerar todas las tareas
Marcar tareas como completadas
Generación de ID de tareas del lado del servidor
Cumplimiento de JSON-RPC 2.0 para la invocación de herramientas
Prerrequisitos
Python 3.10+
pipenv o
venvpara entornos virtualesUna clave API de OpenAI
Instalación
Clonar el repositorio:
git clone https://github.com/oseni99/todo-mcp cd todo-mcpCrear y activar un entorno virtual:
python3 -m venv .venv source .venv/bin/activateInstalar dependencias:
pip install -r requirements.txtCrea un
.enven la raíz del proyecto:OPENAI_API_KEY=sk-... MCP_SERVER=http://127.0.0.1:8000
Estructura del directorio
todoMCP/
├── client/ # CLI client code
│ └── cli.py # Main entrypoint for the MCP-CLI
├── server/ # FastAPI server code
│ ├── handlers.py # Business logic for add, list, complete
│ ├── tools.py # JSON-Schema tool manifest
│ └── main.py # FastAPI app with /tools and /rpc
├── .env # Environment variables (not committed)
├── requirements.txt # Python dependencies
└── README.md # This fileEjecución del servidor
fastapi dev server/main.pyVisite http://127.0.0.1:8000/docs para obtener documentos de API interactivos.
Ejecución de la CLI
Desde la raíz del proyecto:
python -m client.cliEscriba comandos en lenguaje natural en el indicador, por ejemplo:
> Create a task titled "Write blog post" with content "Outline first draft" due 2025-05-20
> List my tasks
> Mark the first task as done
> Thanks!
> exitLa CLI imprimirá invocaciones de herramientas y respuestas LLM.
This server cannot be installed
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
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that integrates with Notion's API to manage personal todo lists, allowing users to view, add, and update tasks directly from Claude.31MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol (MCP) server that provides tools for managing todo items, including creation, updating, completion, deletion, searching, and summarizing tasks.1744MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server providing comprehensive task management capabilities with support for project organization, task tracking, and automatic PRD parsing into actionable items.37MIT
- -licenseAqualityNot gradedmaintenanceA task management Model Context Protocol server that helps break down user requests into manageable tasks with subtasks, dependencies, and notes, while enforcing a structured workflow with user approval steps.173510
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
MCP Spec Compliance MCP — audits any MCP server.json against the official Model Context Protocol
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/oseni99/todo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server