usefulapi

ClickUp MCP server. Read teams, spaces, lists and tasks; create, update and comment on tasks and track time.

Claude

  1. Open Settings → Connectors → Add custom connector
  2. Paste this URL:
    https://clickup.usefulapi.io/mcp
  3. Authenticate with ClickUp when prompted

Cursor · VS Code · Windsurf · Cline

Add to your MCP config, then reload & authorize:

{
  "mcpServers": {
    "clickup": {
      "url": "https://clickup.usefulapi.io/mcp"
    }
  }
}
live16 toolsFree 100 tool calls / monthPro $9/mo · $90/yr

Tools 16

ToolTypeWhat it does
clickup_get_authorized_userread
Get authorized user
Get the user associated with the current ClickUp API token. ClickUp REST: GET /user.
clickup_list_workspacesread
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_spacesread
List spaces
List spaces in a workspace (team). ClickUp REST: GET /team/{team_id}/space.
clickup_list_foldersread
List folders
List folders in a space. ClickUp REST: GET /space/{space_id}/folder.
clickup_list_listsread
List lists
List the lists inside a folder. ClickUp REST: GET /folder/{folder_id}/list.
clickup_list_folderless_listsread
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_tasksread
Get tasks
Get the tasks in a list, with optional filters and pagination. ClickUp REST: GET /list/{list_id}/task.
clickup_get_taskread
Get task
Get a single task by id. ClickUp REST: GET /task/{task_id}.
clickup_get_task_commentsread
Get task comments
Get the comments on a task. ClickUp REST: GET /task/{task_id}/comment.
clickup_get_list_commentsread
Get list comments
Get the comments on a list. ClickUp REST: GET /list/{list_id}/comment.
clickup_search_tasksread
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_taskwrite
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_taskwrite
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_commentwrite
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_statusmeta
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_upgrademeta
Upgrade to Pro (unlimited)
Subscribe to Pro for unlimited tool calls, monthly ($9) or yearly ($90). Returns a Stripe Checkout link.

Pricing

PlanPriceLimit
Free$0100 tool calls / month
Pro$9/mo · $90/yrUnlimited

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.