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}댓글을 삭제합니다.