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]"
- "העבר את משימת האימות אל 'בתהליך' בלוח Sprint"
- "הוסף תגובה למשימת ה-refactor של ה-API שמציינת שהתחלתי את הסקירה"
- "תייג את כל משימות הפגישות שלי בתגית 'meetings'"
- "צור לוח חדש בשם 'תכנון Q2'"
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}מחק תגובה.