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.
Bắt đầu Nhanh
- 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"
- Khởi động lại Claude Code
- Verify it's working:
claude mcp list
You should see
taskleefwith a green checkmark.
Cách khác: Cấu hình Thủ công
Add directly to ~/.claude.json:
{
"mcpServers": {
"taskleef": {
"type": "http",
"url": "https://taskleef.com/mcp/messages",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}Công cụ Có sẵn
The MCP server provides 40 tools across 7 domains:
Ví dụ Sử dụng
Sau khi cấu hình, bạn có thể yêu cầu Claude quản lý công việc một cách tự nhiên:
- "Hiện cho tôi các việc cần làm trong tuần này"
- "Tạo một việc cần làm để xem lại báo cáo quý trước thứ Sáu [công việc]"
- "Chuyển tác vụ xác thực sang Đang thực hiện trên bảng Sprint"
- "Thêm một bình luận vào tác vụ tái cấu trúc API nói rằng tôi đã bắt đầu rà soát"
- "Gắn thẻ 'meetings' cho tất cả việc cần làm về cuộc họp của tôi"
- "Tạo một bảng mới tên là 'Lập kế hoạch Q2'"
Claude Desktop
Đối với Claude Desktop, thêm vào tệp cài đặt MCP của bạn:
{
"mcpServers": {
"taskleef": {
"transport": {
"type": "sse",
"url": "https://taskleef.com/mcp/sse",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
}
− Bình luận
/api/todos/{todoId}/commentsLấy tất cả bình luận trên một việc cần làm.
/api/todos/{todoId}/commentsThêm một bình luận vào một việc cần làm.
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}Cập nhật một bình luận.
/api/comments/{id}Xóa một bình luận.