Servidor MCP de tareas
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., "@Servidor MCP de tareas¿cuáles tareas tengo pendientes hoy?"
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 Task Server
Project for Programming IV Extraclass Assignment 1. It implements a Model Context Protocol (MCP) server that manages tasks in a local JSON file and exposes one resource, two tools, and a prompt.
Capabilities
Resource
tasks://pending: returns only incomplete tasks.Tool
add_task: adds a task with name, description, and priority (alta,media, orbaja).Tool
complete_task: marks an existing task as completed by ID.Prompt
daily_summary: builds a template with the current status to generate a daily summary.
The server uses stdio transport. The host or client starts it as a subprocess and MCP messages travel through stdin and stdout.
Related MCP server: TaskTrek MCP Server
Requirements
Python 3.11 or higher.
Access to a terminal.
Claude Desktop, MCP Inspector, or another compatible MCP client for integration.
Installation
Windows (PowerShell)
cd C:\RUTA\mcp-todo-server
py -m venv .venv
.\.venv\Scripts\Activate.ps1
python -m pip install -r requirements.txtmacOS or Linux
cd /RUTA/mcp-todo-server
python3 -m venv .venv
source .venv/bin/activate
python -m pip install -r requirements.txtExecution
The stdio server waits for a client to send the first message; therefore, when run directly it does not print a menu or open a port:
python server.pyUse Ctrl+C to stop it.
Demo client
client_demo.py is a compatible MCP client built with the official SDK. It connects via stdio, discovers the capabilities, and runs all the operations requested in the exercise:
python client_demo.py --resetTo save a UTF-8 transcript:
python client_demo.py --reset --output evidence/client_demo_output.txtThe --reset option restores the two initial records before the test. The demo queries the Resource, adds two tasks, completes one, gets the Prompt, and queries the Resource again.
Automated tests
python -m pytest -qThe suite checks:
Discovery of the Resource, Tools, and Prompt.
Exclusive reading of pending tasks.
Creation and completion of tasks.
Dynamic content of
daily_summary.Error handling when completing a nonexistent ID.
MCP Inspector
With Node.js installed, the official interface can be opened:
npx @modelcontextprotocol/inspector .venv/Scripts/python.exe server.pyOn macOS or Linux, change the executable to .venv/bin/python.
Claude Desktop configuration
Open
claude_desktop_config.example.json.Replace
C:\\RUTA\\mcp-todo-serverwith the absolute path of the project.Copy the
mcpServersentry to the Claude Desktop configuration file. On Windows it is usually located at:%APPDATA%\Claude\claude_desktop_config.json.Completely close Claude Desktop and reopen it.
Example:
{
"mcpServers": {
"todo-server": {
"command": "C:\\RUTA\\mcp-todo-server\\.venv\\Scripts\\python.exe",
"args": ["C:\\RUTA\\mcp-todo-server\\server.py"]
}
}
}Do not use relative paths: the host may start the server from another directory.
Structure
mcp-todo-server/
server.py
client_demo.py
tasks.json
requirements.txt
claude_desktop_config.example.json
tests/
test_server.py
diagramas/
arquitectura_mcp_ecommerce.mmd
flujo_consulta_inventario.mmd
evidence/
client_demo_output.txt
01_inspector_connected.png
02_add_task_result.png
03_complete_task_result.png
04_resource_pending.png
05_daily_summary_prompt.pngPublishing to Git
git init
git add .
git commit -m "Implementar servidor MCP de tareas"
git branch -M main
git remote add origin URL_DEL_REPOSITORIO
git push -u origin mainThe final repository URL must be added to the report before submitting.
Technical references
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.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceA minimal Model Context Protocol server implementation that provides tools for managing a to-do list, allowing users to create tasks, list them, and mark them as completed via JSON-RPC calls.
- FlicenseBqualityDmaintenanceA Model Context Protocol server for TaskTrek that enables AI assistants to manage tasks and projects programmatically via JSON file storage.7
- FlicenseNot gradedqualityBmaintenanceA lightweight task management MCP server that enables CRUD operations on tasks stored in a single JSON file, including listing, creating, updating progress, and setting priorities.133
- FlicenseCqualityCmaintenanceA simple MCP server for managing tasks via a local JSON file, demonstrating resources, tools, and prompts for task reading, creation, and analysis.1
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP server exposing the Backtest360 engine API as tools for AI agents.
A Model Context Protocol server for Wix AI tools
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/MxrxnxX/mcp-todo-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server