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.
Avvio rapido
- 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"
- Riavvia Claude Code
- Verify it's working:
claude mcp list
You should see
taskleefwith a green checkmark.
Alternativa: configurazione manuale
Add directly to ~/.claude.json:
{
"mcpServers": {
"taskleef": {
"type": "http",
"url": "https://taskleef.com/mcp/messages",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}Strumenti disponibili
The MCP server provides 40 tools across 7 domains:
Esempio di utilizzo
Una volta configurato, puoi chiedere a Claude di gestire le tue attività in modo naturale:
- "Mostrami le mie attività di questa settimana"
- "Crea un'attività per rivedere il report trimestrale entro venerdì [lavoro]"
- "Sposta l'attività di autenticazione su In corso nella bacheca Sprint"
- "Aggiungi un commento all'attività di refactoring dell'API dicendo che ho iniziato la revisione"
- "Etichetta tutte le mie attività di riunione con l'etichetta 'riunioni'"
- "Crea una nuova bacheca chiamata 'Pianificazione Q2'"
Claude Desktop
Per Claude Desktop, aggiungi al tuo file di impostazioni MCP:
{
"mcpServers": {
"taskleef": {
"transport": {
"type": "sse",
"url": "https://taskleef.com/mcp/sse",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
}
− Commenti
/api/todos/{todoId}/commentsOttieni tutti i commenti su un'attività.
/api/todos/{todoId}/commentsAggiungi un commento a un'attività.
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}Aggiorna un commento.
/api/comments/{id}Elimina un commento.