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.
Schnellstart
- 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"
- Claude Code neu starten
- Verify it's working:
claude mcp list
You should see
taskleefwith a green checkmark.
Alternative: Manuelle Konfiguration
Add directly to ~/.claude.json:
{
"mcpServers": {
"taskleef": {
"type": "http",
"url": "https://taskleef.com/mcp/messages",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}Verfügbare Tools
The MCP server provides 40 tools across 7 domains:
Anwendungsbeispiel
Nach der Konfiguration können Sie Claude bitten, Ihre Aufgaben auf natürliche Weise zu verwalten:
- "Zeige mir meine Todos für diese Woche"
- "Erstelle ein Todo, um den Quartalsbericht bis Freitag zu prüfen [work]"
- "Verschiebe die Authentifizierungsaufgabe auf dem Sprint-Board nach In Bearbeitung"
- "Füge der API-Refactoring-Aufgabe einen Kommentar hinzu, dass ich mit der Prüfung begonnen habe"
- "Versieh alle meine Meeting-Todos mit dem Tag 'meetings'"
- "Erstelle ein neues Board mit dem Namen 'Q2-Planung'"
Claude Desktop
Fügen Sie für Claude Desktop Folgendes zu Ihrer MCP-Einstellungsdatei hinzu:
{
"mcpServers": {
"taskleef": {
"transport": {
"type": "sse",
"url": "https://taskleef.com/mcp/sse",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
}
− Kommentare
/api/todos/{todoId}/commentsAlle Kommentare zu einem Todo abrufen.
/api/todos/{todoId}/commentsEinen Kommentar zu einem Todo hinzufügen.
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}Einen Kommentar aktualisieren.
/api/comments/{id}Einen Kommentar löschen.