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 に自然な言葉でタスクの管理を依頼できます:
- 「今週の私の Todo を表示して」
- 「四半期レポートを金曜日までにレビューする Todo を作成して [work]」
- 「Sprint ボードで認証タスクを In Progress に移動して」
- 「API リファクタリングタスクに、レビューを開始したとコメントを追加して」
- 「私のすべての会議 Todo に '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}/commentsTodo のすべてのコメントを取得します。
/api/todos/{todoId}/commentsTodo にコメントを追加します。
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}コメントを削除します。