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.
Швидкий старт
- 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
- Verify it's working:
claude mcp list
You should see
taskleefwith a green checkmark.
Альтернатива: ручне налаштування
Add directly to ~/.claude.json:
{
"mcpServers": {
"taskleef": {
"type": "http",
"url": "https://taskleef.com/mcp/messages",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}Доступні інструменти
The MCP server provides 40 tools across 7 domains:
Приклад використання
Після налаштування ви можете природно просити Claude керувати вашими завданнями:
- "Покажи мої завдання на цей тиждень"
- "Створи завдання переглянути квартальний звіт до п'ятниці [робота]"
- "Перенеси завдання з автентифікації до In Progress на дошці Sprint"
- "Додай коментар до завдання з рефакторингу API, що я розпочав перегляд"
- "Познач усі мої завдання-зустрічі тегом 'meetings'"
- "Створи нову дошку під назвою 'Q2 Planning'"
Claude Desktop
Для Claude Desktop додайте до файлу налаштувань MCP:
{
"mcpServers": {
"taskleef": {
"transport": {
"type": "sse",
"url": "https://taskleef.com/mcp/sse",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
}
− Коментарі
/api/todos/{todoId}/commentsОтримати всі коментарі до завдання.
/api/todos/{todoId}/commentsДодати коментар до завдання.
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}Оновити коментар.
/api/comments/{id}Видалити коментар.