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.
Szybki start
- 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"
- Uruchom ponownie Claude Code
- Verify it's working:
claude mcp list
You should see
taskleefwith a green checkmark.
Alternatywa: konfiguracja ręczna
Add directly to ~/.claude.json:
{
"mcpServers": {
"taskleef": {
"type": "http",
"url": "https://taskleef.com/mcp/messages",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}Dostępne narzędzia
The MCP server provides 40 tools across 7 domains:
Przykład użycia
Po skonfigurowaniu możesz poprosić Claude o zarządzanie zadaniami w naturalny sposób:
- "Pokaż moje zadania na ten tydzień"
- "Utwórz zadanie przeglądu raportu kwartalnego do piątku [praca]"
- "Przenieś zadanie uwierzytelniania do W toku na tablicy Sprint"
- "Dodaj komentarz do zadania refaktoryzacji API, że zacząłem przegląd"
- "Oznacz wszystkie moje zadania spotkań tagiem 'spotkania'"
- "Utwórz nową tablicę o nazwie 'Planowanie Q2'"
Claude Desktop
W przypadku Claude Desktop dodaj do pliku ustawień MCP:
{
"mcpServers": {
"taskleef": {
"transport": {
"type": "sse",
"url": "https://taskleef.com/mcp/sse",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
}
− Komentarze
/api/todos/{todoId}/commentsPobierz wszystkie komentarze do zadania.
/api/todos/{todoId}/commentsDodaj komentarz do zadania.
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}Zaktualizuj komentarz.
/api/comments/{id}Usuń komentarz.