mcp-project-manager
Enables task management through natural language: create tasks, list and filter them, and update their status. It uses SQLite for persistence and supports both local stdio and remote SSE transports.
README
Project Manager MCP Server — Lab 01
Servidor MCP en TypeScript que expone tres tools de gestión de tareas con persistencia en SQLite. Soporta transporte stdio (local) y SSE (deploy remoto en Railway).
Tools
| Tool | Parámetros | Descripción |
|---|---|---|
create_task |
title (req), description (opt), priority (req: low/medium/high/critical) |
Crea una tarea nueva (status inicial todo) |
list_tasks |
status (opt), priority (opt) |
Lista tareas, más recientes primero, con filtros opcionales |
update_task |
id (req), status (req: todo/in_progress/done) |
Actualiza el status de una tarea por id |
Estructura
src/
db.ts # capa SQLite (better-sqlite3): initDb, createTask, listTasks, updateTask
server.ts # createServer(): McpServer con las 3 tools (compartido por ambos transportes)
index.ts # entrypoint stdio (uso local con Claude Code)
sse.ts # entrypoint SSE con Express (deploy remoto)
Uso local (stdio)
npm install
npm run dev # arranca el servidor stdio (queda esperando input — correcto)
.mcp.json para Claude Code (variante local):
{
"mcpServers": {
"project-manager": {
"command": "npx",
"args": ["tsx", "src/index.ts"],
"cwd": "/Users/pablo/Desktop/mcp-project-manager"
}
}
}
Uso remoto (SSE en Railway)
npm start # arranca el servidor SSE en 0.0.0.0:$PORT (default 8000)
GET /— health checkGET /sse— stream SSE (conexión MCP)POST /messages?sessionId=...— mensajes entrantes
.mcp.json para Claude Code (variante remota):
{
"mcpServers": {
"project-manager": {
"type": "sse",
"url": "https://mcp-project-manager-production-3dd4.up.railway.app/sse"
}
}
}
Deploy: railway init → railway up → variable DB_PATH=/app/tasks.db → railway domain.
Nota: sin un volumen de Railway, la base SQLite es efímera (se pierde en cada redeploy). Para persistencia real, añade un volumen y apunta
DB_PATHal mount.
Probar en Claude Code
Reinicia Claude Code en este directorio, aprueba el servidor y prueba:
- "Create a task called 'Set up CI/CD pipeline' with high priority"
- "List all tasks"
- "Update task 1 to in_progress"
- "Show me all high priority tasks that are still todo"
Inspeccionar la BD local: sqlite3 tasks.db "SELECT * FROM tasks;"
Notas de diseño
- Los logs van a stderr — stdout transporta el protocolo MCP en modo stdio.
- SSE es el transporte remoto legacy que pide el lab; la modernización a Streamable HTTP queda como extensión.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.