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"
- "أضف تعليقًا إلى مهمة إعادة هيكلة 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}حذف تعليق.