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]"
- "ย้ายงาน authentication ไปที่ In Progress บนบอร์ด Sprint"
- "เพิ่มความคิดเห็นในงาน API refactor ว่าฉันได้เริ่มทบทวนแล้ว"
- "ติดแท็ก '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}ลบความคิดเห็น