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.
Pornire rapidă
- 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"
- Repornește Claude Code
- Verify it's working:
claude mcp list
You should see
taskleefwith a green checkmark.
Alternativă: configurare manuală
Add directly to ~/.claude.json:
{
"mcpServers": {
"taskleef": {
"type": "http",
"url": "https://taskleef.com/mcp/messages",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}Instrumente disponibile
The MCP server provides 40 tools across 7 domains:
Exemplu de utilizare
Odată configurat, îi poți cere lui Claude să îți gestioneze sarcinile în mod natural:
- „Arată-mi sarcinile pentru această săptămână”
- „Creează o sarcină de a revizui raportul trimestrial până vineri [work]”
- „Mută sarcina de autentificare în În lucru pe panoul Sprint”
- „Adaugă un comentariu la sarcina de refactorizare API spunând că am început revizuirea”
- „Etichetează toate sarcinile mele de întâlniri cu eticheta «meetings»”
- „Creează un panou nou numit «Planificare T2»”
Claude Desktop
Pentru Claude Desktop, adaugă în fișierul de setări MCP:
{
"mcpServers": {
"taskleef": {
"transport": {
"type": "sse",
"url": "https://taskleef.com/mcp/sse",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
}
− Comentarii
/api/todos/{todoId}/commentsObține toate comentariile de la o sarcină.
/api/todos/{todoId}/commentsAdaugă un comentariu la o sarcină.
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}Actualizează un comentariu.
/api/comments/{id}Șterge un comentariu.