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.
Kom raskt i gang
- 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"
- Start Claude Code på nytt
- Verify it's working:
claude mcp list
You should see
taskleefwith a green checkmark.
Alternativ: Manuell konfigurasjon
Add directly to ~/.claude.json:
{
"mcpServers": {
"taskleef": {
"type": "http",
"url": "https://taskleef.com/mcp/messages",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}Tilgjengelige verktøy
The MCP server provides 40 tools across 7 domains:
Eksempel på bruk
Når det er konfigurert, kan du be Claude administrere oppgavene dine på en naturlig måte:
- «Vis meg gjøremålene mine for denne uken»
- «Opprett et gjøremål om å gå gjennom kvartalsrapporten innen fredag [arbeid]»
- «Flytt autentiseringsoppgaven til Pågår på Sprint-tavlen»
- «Legg til en kommentar på API-refaktoreringsoppgaven om at jeg har startet gjennomgangen»
- «Sett etiketten «møter» på alle møtegjøremålene mine»
- «Opprett en ny tavle som heter «Q2-planlegging»»
Claude Desktop
For Claude Desktop legger du til dette i MCP-innstillingsfilen din:
{
"mcpServers": {
"taskleef": {
"transport": {
"type": "sse",
"url": "https://taskleef.com/mcp/sse",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
}
− Kommentarer
/api/todos/{todoId}/commentsHent alle kommentarer på et gjøremål.
/api/todos/{todoId}/commentsLegg til en kommentar på et gjøremål.
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}Oppdater en kommentar.
/api/comments/{id}Slett en kommentar.