clickup-custom-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CLICKUP_API_KEY | Yes | Your ClickUp Personal Access Token. Obtain from Settings > Apps > API Token. | |
| CLICKUP_TEAM_ID | Yes | Your ClickUp Team ID, found in the URL: https://app.clickup.com/{team_id}/... |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| clickup_list_tasksA | List ClickUp tasks. Filter by list_id, status, assignee, or search term. Uses team task filter when list_id is omitted. |
| clickup_update_taskC | Update a ClickUp task by task_id |
| clickup_list_docsA | Search/list ClickUp Docs and Wikis in the workspace. Use doc_type to filter: doc, wiki, or all. |
| clickup_list_doc_pagesC | List pages inside a ClickUp Doc or Wiki |
| clickup_create_docB | Create a ClickUp Doc. Optionally attach to a Space, Folder, or List via parent_id. |
| clickup_edit_docC | Edit a page inside a ClickUp Doc. Updates page name and/or markdown content. |
| clickup_create_wikiB | Create a ClickUp Wiki attached to a Space. |
| clickup_edit_wikiC | Edit a page inside a ClickUp Wiki (same API as Docs) |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Tools for docs and wikis are clearly separated, but clickup_list_doc_pages works for both docs and wikis despite its name implying only docs. Otherwise, tasks and docs/wiki domains are distinct.
All tools follow a consistent clickup_verb_noun pattern using snake_case, making the set predictable and easy to navigate.
With 8 tools covering docs, wikis, and task operations, the count is well-scoped without being overwhelming or insufficient for the stated purpose.
The set lacks basic CRUD operations: no create task, no delete tools for docs, wikis, or tasks, creating notable gaps that will likely cause agent failures.