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.
Hızlı Başlangıç
- 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'u yeniden başlatın
- Verify it's working:
claude mcp list
You should see
taskleefwith a green checkmark.
Alternatif: Manuel Yapılandırma
Add directly to ~/.claude.json:
{
"mcpServers": {
"taskleef": {
"type": "http",
"url": "https://taskleef.com/mcp/messages",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}Kullanılabilir Araçlar
The MCP server provides 40 tools across 7 domains:
Örnek Kullanım
Yapılandırdıktan sonra, görevlerinizi doğal bir şekilde yönetmesini Claude'dan isteyebilirsiniz:
- "Bu haftaki görevlerimi göster"
- "Cuma gününe kadar üç aylık raporu incelemek için bir görev oluştur [iş]"
- "Kimlik doğrulama görevini Sprint panosunda Devam Ediyor sütununa taşı"
- "API yeniden düzenleme görevine incelemeye başladığımı belirten bir yorum ekle"
- "Tüm toplantı görevlerimi 'toplantılar' etiketiyle etiketle"
- "'Q2 Planlama' adında yeni bir pano oluştur"
Claude Desktop
Claude Desktop için MCP ayarları dosyanıza ekleyin:
{
"mcpServers": {
"taskleef": {
"transport": {
"type": "sse",
"url": "https://taskleef.com/mcp/sse",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
}
− Yorumlar
/api/todos/{todoId}/commentsBir görevdeki tüm yorumları al.
/api/todos/{todoId}/commentsBir göreve yorum ekle.
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}Bir yorumu güncelle.
/api/comments/{id}Bir yorumu sil.