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 управлять вашими задачами на естественном языке:
- «Покажи мои задачи на эту неделю»
- «Создай задачу проверить квартальный отчёт к пятнице [work]»
- «Перемести задачу аутентификации в столбец 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}Удалить комментарий.