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.
Quick 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"
- Restart Claude Code
- Verify it's working:
claude mcp list
You should see
taskleefwith a green checkmark.
Alternative: Manual Configuration
Add directly to ~/.claude.json:
{
"mcpServers": {
"taskleef": {
"type": "http",
"url": "https://taskleef.com/mcp/messages",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}Available Tools
The MCP server provides 40 tools across 7 domains:
Example Usage
Once configured, you can ask Claude to manage your tasks naturally:
- "Show me my todos for this week"
- "Create a todo to review the quarterly report by Friday [work]"
- "Move the authentication task to In Progress on the Sprint board"
- "Add a comment to the API refactor task saying I've started the review"
- "Tag all my meeting todos with the 'meetings' tag"
- "Create a new board called 'Q2 Planning'"
Claude Desktop
For Claude Desktop, add to your MCP settings file:
{
"mcpServers": {
"taskleef": {
"transport": {
"type": "sse",
"url": "https://taskleef.com/mcp/sse",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
}
− Comments
/api/todos/{todoId}/commentsGet all comments on a todo.
/api/todos/{todoId}/commentsAdd a comment to a todo.
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}Update a comment.
/api/comments/{id}Delete a comment.