TaskLeef includes a Model Context Protocol (MCP) server that allows AI assistants like Claude Code to manage your todos, boards, and Kanban workflows directly from the command line.
Inicio rápido
- Get your API key from Settings → API Keys
- Add the MCP server to Claude Code:
claude mcp add --transport http taskleef https://taskleef.com/mcp/messages -H "X-API-Key: YOUR_API_KEY"
- Reinicia Claude Code
- Verify it's working:
claude mcp list
You should see
taskleefwith a green checkmark.
Alternativa: configuración manual
Add directly to ~/.claude.json:
{
"mcpServers": {
"taskleef": {
"type": "http",
"url": "https://taskleef.com/mcp/messages",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}Herramientas disponibles
The MCP server provides 40 tools across 7 domains:
Ejemplo de uso
Una vez configurado, puedes pedir a Claude que gestione tus tareas con lenguaje natural:
- "Muéstrame mis tareas de esta semana"
- "Crea una tarea para revisar el informe trimestral antes del viernes [trabajo]"
- "Mueve la tarea de autenticación a En curso en el tablero del sprint"
- "Añade un comentario a la tarea de refactorización de la API diciendo que he empezado la revisión"
- "Etiqueta todas mis tareas de reuniones con la etiqueta 'reuniones'"
- "Crea un tablero nuevo llamado 'Planificación Q2'"
Claude Desktop
Para Claude Desktop, añádelo a tu archivo de configuración de MCP:
{
"mcpServers": {
"taskleef": {
"transport": {
"type": "sse",
"url": "https://taskleef.com/mcp/sse",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
}
− Comentarios
/api/todos/{todoId}/commentsObtener todos los comentarios de una tarea.
/api/todos/{todoId}/commentsAñadir un comentario a una tarea.
curl -X POST -H "X-API-Key: your-api-key" \ -H "Content-Type: application/json" \ -d '{"text": "This is my comment"}' \ https://taskleef.com/api/todos/{todoId}/comments/api/comments/{id}Actualizar un comentario.
/api/comments/{id}Eliminar un comentario.