# clickup MCP server

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

## Links
- Registry page: https://www.getdrio.com/mcp/io-usefulapi-clickup
- Repository: https://github.com/m190/usefulapi-mcp

## Install
- Endpoint: https://clickup.usefulapi.io/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://clickup.usefulapi.io/mcp

## Tools
- clickup_get_authorized_user (Get authorized user) - Get the user associated with the current ClickUp API token. ClickUp REST: GET /user. Endpoint: https://clickup.usefulapi.io/mcp
- clickup_list_workspaces (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. Endpoint: https://clickup.usefulapi.io/mcp
- clickup_list_spaces (List spaces) - List spaces in a workspace (team). ClickUp REST: GET /team/{team_id}/space. Endpoint: https://clickup.usefulapi.io/mcp
- clickup_list_folders (List folders) - List folders in a space. ClickUp REST: GET /space/{space_id}/folder. Endpoint: https://clickup.usefulapi.io/mcp
- clickup_list_lists (List lists) - List the lists inside a folder. ClickUp REST: GET /folder/{folder_id}/list. Endpoint: https://clickup.usefulapi.io/mcp
- clickup_list_folderless_lists (List folderless lists) - List the lists that live directly in a space (not inside a folder). ClickUp REST: GET /space/{space_id}/list. Endpoint: https://clickup.usefulapi.io/mcp
- clickup_get_tasks (Get tasks) - Get the tasks in a list, with optional filters and pagination. ClickUp REST: GET /list/{list_id}/task. Endpoint: https://clickup.usefulapi.io/mcp
- clickup_get_task (Get task) - Get a single task by id. ClickUp REST: GET /task/{task_id}. Endpoint: https://clickup.usefulapi.io/mcp
- clickup_get_task_comments (Get task comments) - Get the comments on a task. ClickUp REST: GET /task/{task_id}/comment. Endpoint: https://clickup.usefulapi.io/mcp
- clickup_get_list_comments (Get list comments) - Get the comments on a list. ClickUp REST: GET /list/{list_id}/comment. Endpoint: https://clickup.usefulapi.io/mcp
- clickup_search_tasks (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. Endpoint: https://clickup.usefulapi.io/mcp
- clickup_create_task (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. Endpoint: https://clickup.usefulapi.io/mcp
- clickup_update_task (Update task) - WRITE: update fields on an existing task. Only the fields you pass are changed. ClickUp REST: PUT /task/{task_id}. Endpoint: https://clickup.usefulapi.io/mcp
- clickup_create_task_comment (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. Endpoint: https://clickup.usefulapi.io/mcp

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: io.usefulapi
- Version: 1.0.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Aug 1, 2026
- Source: https://registry.modelcontextprotocol.io
