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 बोर्ड पर authentication कार्य को In Progress में ले जाओ"
- "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}एक टिप्पणी हटाएँ।