ClickUp MCP server. Read teams, spaces, lists and tasks; create, update and comment on tasks and track time.
Add to your MCP config, then reload & authorize:
{
"mcpServers": {
"clickup": {
"url": "https://clickup.usefulapi.io/mcp"
}
}
}| Tool | Type | What it does |
|---|---|---|
clickup_get_authorized_user | read | Get authorized user Get the user associated with the current ClickUp API token. ClickUp REST: GET /user. |
clickup_list_workspaces | read | List workspaces List the workspaces (the ClickUp API calls these "teams") the token can access — their ids are the team_id used by other tools. ClickUp REST: GET /team. |
clickup_list_spaces | read | List spaces List spaces in a workspace (team). ClickUp REST: GET /team/{team_id}/space. |
clickup_list_folders | read | List folders List folders in a space. ClickUp REST: GET /space/{space_id}/folder. |
clickup_list_lists | read | List lists List the lists inside a folder. ClickUp REST: GET /folder/{folder_id}/list. |
clickup_list_folderless_lists | read | List folderless lists List the lists that live directly in a space (not inside a folder). ClickUp REST: GET /space/{space_id}/list. |
clickup_get_tasks | read | Get tasks Get the tasks in a list, with optional filters and pagination. ClickUp REST: GET /list/{list_id}/task. |
clickup_get_task | read | Get task Get a single task by id. ClickUp REST: GET /task/{task_id}. |
clickup_get_task_comments | read | Get task comments Get the comments on a task. ClickUp REST: GET /task/{task_id}/comment. |
clickup_get_list_comments | read | Get list comments Get the comments on a list. ClickUp REST: GET /list/{list_id}/comment. |
clickup_search_tasks | read | Search tasks Search/filter tasks across a whole workspace (team), optionally scoped to spaces/folders/lists. ClickUp's "Get Filtered Team Tasks". ClickUp REST: GET /team/{team_id}/task. |
clickup_create_task | write | Create task WRITE: create a new task in a list. `name` is required; the list is the {list_id} path param, not a body field. ClickUp REST: POST /list/{list_id}/task. |
clickup_update_task | write | Update task WRITE: update fields on an existing task. Only the fields you pass are changed. ClickUp REST: PUT /task/{task_id}. |
clickup_create_task_comment | write | Create task comment WRITE: add a comment to a task. `comment_text` is required; the task is the {task_id} path param. ClickUp REST: POST /task/{task_id}/comment. |
clickup_usage_status | Usage status (free-tier meter) Report the caller's current free-tier usage this month: calls used, monthly limit, remaining, and whether the cap is reached. | |
clickup_upgrade | Upgrade to Pro (unlimited) Subscribe to Pro for unlimited tool calls, monthly ($9) or yearly ($90). Returns a Stripe Checkout link. |
| Plan | Price | Limit |
|---|---|---|
| Free | $0 | 100 tool calls / month |
| Pro | $9/mo · $90/yr | Unlimited |
This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.