Manage ClickUp tasks, lists, and spaces via the v2 API: browse the hierarchy, list/create tasks, and comment.
80+ deploysclaude mcp add clickup --url https://datafaucet.dev/api/mcp/t/clickup
Run this command in your terminal · most users connect in under 60s
GET endpoints
clickup_get_current_user
Get the authenticated user. Returns user id, username, and email.
https://api.clickup.com/api/v2/user
clickup_list_workspaces
List the workspaces (teams) the user belongs to. Returns teams[] with id and name. Use a team id to list spaces.
https://api.clickup.com/api/v2/team
clickup_list_spaces
List spaces in a workspace by team id. Returns spaces[] with id and name.
https://api.clickup.com/api/v2/team/{team_id}/space
clickup_list_lists
List the task lists in a space. Returns lists[] with id and name. Use a list id to view or create tasks.
https://api.clickup.com/api/v2/space/{space_id}/list
clickup_list_tasks
List tasks in a list. Returns tasks[] with id, name, status, assignees, and due_date.
https://api.clickup.com/api/v2/list/{list_id}/task?archived=false
clickup_get_task
Get a single task by id. Returns name, description, status, assignees, due_date, priority, and url.
https://api.clickup.com/api/v2/task/{task_id}
POST endpoints
clickup_create_task
Create a task in a list. Requires name; description optional. Returns the created task's id and url.
https://api.clickup.com/api/v2/list/{list_id}/task
clickup_add_comment
Add a comment to a task. Returns the created comment's id.
https://api.clickup.com/api/v2/task/{task_id}/comment
Run this in your terminal:
claude mcp add clickup https://datafaucet.dev/api/mcp/t/clickup
Connect ClickUp to your AI agent in under 60 seconds. No account required.
{notion_token}) with your real credentialsNeed API keys? Try our free sandbox templates first to see MCP in action with zero setup.
Replace these placeholders with your real values before deploying:
{clickup_token}API settings page{comment_text}Your value{description}Your value{list_id}Resource identifier{name}Your value{space_id}Resource identifier{task_id}Resource identifier{team_id}Resource identifierPreview:
GET https://api.clickup.com/api/v2/user Authorization: {clickup_token}
claude mcp add clickup --url https://datafaucet.dev/api/mcp/t/clickupWhat your AI agent sees
I have access to 8 tools from ClickUp: clickup_get_current_user, clickup_list_workspaces, clickup_list_spaces, and 5 more.
“Get the authenticated user. Returns user id, username, and email.”
Calling clickup_get_current_user... Done. Here are the results.
Try these prompts
“List all tasks in the Sprint list and their statuses”
Copy“Create a task 'Review PR #42' in the Engineering list with a description”
Copy“Add a comment to task X that it's blocked on design”
CopyClick any prompt to copy, then paste into your AI client.