TinyTasks MCP Server
A hybrid MCP server compatible with Claude Desktop and Web, supporting both local and web deployment modes for task management.
🤖 TinyTasks MCP Server
Servidor MCP híbrido que funciona tanto con Claude Desktop como con Claude Web.
✅ Estado del Proyecto
- API NestJS: ✅ Funcionando en
https://forgetful-production-a037.up.railway.app - MCP Server Local: ✅ Listo para Claude Desktop
- MCP Server Web: ✅ Listo para despliegue y Claude Web
- 8 Herramientas: ✅ Todas implementadas y probadas
🛠️ Herramientas Disponibles
- get_api_status - Estado de la API
- get_tasks_stats - Estadísticas de tareas
- list_tasks - Listar tareas (con filtros)
- get_task - Obtener tarea específica
- create_task - Crear nueva tarea
- update_task - Actualizar tarea
- toggle_task - Alternar estado
- delete_task - Eliminar tarea
🌐 Para Claude Web (Servidor Público)
Opción 1: Desplegar en Railway
- Instalar Railway CLI:
npm i -g @railway/cli
- Crear nuevo proyecto:
railway login
railway init
railway up
- Configurar variables:
railway variables set WEB_MODE=true
- Obtener URL:
railway status
Opción 2: Desplegar en Vercel
- Instalar Vercel CLI:
npm i -g vercel
- Desplegar:
vercel --prod
Usar en Claude Web
Una vez desplegado, tendrás una URL como:
- Railway:
https://tu-proyecto.railway.app - Vercel:
https://tu-proyecto.vercel.app
Endpoints disponibles:
GET /- Información del servidorGET /mcp/tools- Lista de herramientasPOST /mcp/execute- Ejecutar herramienta
Ejemplo de uso en Claude Web:
Puedes usar mi MCP server en: https://tu-proyecto.railway.app
Herramientas disponibles en: https://tu-proyecto.railway.app/mcp/tools
Para ejecutar una herramienta, haz POST a: https://tu-proyecto.railway.app/mcp/execute
con el body: {"tool": "get_tasks_stats"}
🖥️ Para Claude Desktop (Servidor Local)
1. Configurar Claude Desktop
Edita: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"tinytasks": {
"command": "node",
"args": ["/Users/franciscogoulu/Desktop/Fran Dev/Forgetful3/mcp-tinytasks-server/index.js"],
"env": {
"NODE_ENV": "production"
}
}
}
}
2. Reiniciar Claude Desktop
🧪 Probar Localmente
Modo Claude Desktop:
node index.js
Modo Claude Web:
WEB_MODE=true node index.js
Luego visita: http://localhost:3001
📋 Endpoints de la API Web
GET /
Información del servidor
GET /mcp/tools
Lista todas las herramientas disponibles
POST /mcp/execute
Ejecuta una herramienta específica
Body:
{
"tool": "get_tasks_stats",
"arguments": {}
}
Ejemplo con argumentos:
{
"tool": "create_task",
"arguments": {
"title": "Nueva tarea desde Claude Web",
"priority": "high"
}
}
🔍 Verificar Funcionamiento
Probar API directamente:
curl https://tu-mcp-server.railway.app/mcp/tools
Ejecutar herramienta:
curl -X POST https://tu-mcp-server.railway.app/mcp/execute \
-H "Content-Type: application/json" \
-d '{"tool": "get_api_status"}'
🎯 Resumen de Opciones
Para Claude Desktop:
- Usa el servidor local con protocolo MCP nativo
- Configuración en
claude_desktop_config.json
Para Claude Web:
- Despliega el servidor como API REST
- Usa endpoints HTTP para comunicación
- Accesible desde cualquier lugar
¡Ambos modos consumen la misma API de TinyTasks! # Updated Sun Jun 15 20:54:37 -03 2025
Related Servers
MCP Personal
A collection of MCP servers for various personal productivity tools and utilities.
Lattice HQ
Interact with the Lattice performance management platform.
FireHydrant
An MCP server for interacting with the FireHydrant incident management platform API.
Umami MCP Server
Integrate Umami Analytics with any MCP client like Claude Desktop, VS Code, and more.
HireBase
Interact with the HireBase Job API to manage job listings and applications.
WP-MCP
Manage and publish WordPress content directly from your AI assistant — no PHP required. Supports both STDIO and Streamable HTTP for broad client compatibility.
MCP Data Analizer
Analyze and visualize data from .xlsx and .csv files using matplotlib and plotly.
WordPress MCP Server
Manage WordPress sites via the REST API. Enables AI assistants to handle content, posts, and site configurations.
Atlassian MCP Client
An MCP client for integrating with Atlassian tools like Jira and Confluence using OAuth authentication.
Word MCP Server
Create and edit Microsoft Word (.docx) documents via an API.