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.
Mulai Cepat
- 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"
- Mulai ulang Claude Code
- Verify it's working:
claude mcp list
You should see
taskleefwith a green checkmark.
Alternatif: Konfigurasi Manual
Add directly to ~/.claude.json:
{
"mcpServers": {
"taskleef": {
"type": "http",
"url": "https://taskleef.com/mcp/messages",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}Alat yang Tersedia
The MCP server provides 40 tools across 7 domains:
Contoh Penggunaan
Setelah terkonfigurasi, Anda dapat meminta Claude untuk mengelola tugas Anda secara alami:
- "Tampilkan todo saya untuk minggu ini"
- "Buat todo untuk meninjau laporan triwulanan sebelum Jumat [work]"
- "Pindahkan tugas autentikasi ke In Progress di papan Sprint"
- "Tambahkan komentar ke tugas refaktor API yang menyatakan saya sudah mulai meninjau"
- "Beri tag 'meetings' pada semua todo rapat saya"
- "Buat papan baru bernama 'Q2 Planning'"
Claude Desktop
Untuk Claude Desktop, tambahkan ke berkas pengaturan MCP Anda:
{
"mcpServers": {
"taskleef": {
"transport": {
"type": "sse",
"url": "https://taskleef.com/mcp/sse",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
}
− Komentar
/api/todos/{todoId}/commentsDapatkan semua komentar pada sebuah todo.
/api/todos/{todoId}/commentsTambahkan komentar ke sebuah 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}Perbarui komentar.
/api/comments/{id}Hapus komentar.