mcp-clickup
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CLICKUP_API_TOKEN | Yes | Your ClickUp API token for authentication | |
| CLICKUP_WORKSPACE_ID | Yes | Your ClickUp workspace 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_authenticateC | Authenticate with ClickUp API using an API token and workspace ID |
| clickup_get_task_by_custom_idC | Get a task by its custom ID |
| clickup_get_tasksC | Get multiple tasks by their IDs |
| clickup_get_taskC | Get a task by its ID |
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 4 tools
Tools are mostly distinct: authentication vs. task retrieval. However, clickup_get_task and clickup_get_task_by_custom_id have similar purposes differentiated only by ID type, which could cause minor confusion despite clear descriptions.
All tools follow a consistent snake_case verb_noun pattern (clickup_authenticate, clickup_get_task, etc.) with no deviations, making the naming predictable and clear.
With 4 tools, the server is slightly sparse but appropriate for a focused task retrieval scope. The count is not excessive, but the server could benefit from a few more tools for a broader feature set.
The tool surface is severely incomplete for a task management API. It only provides authentication and read operations for tasks, missing create, update, delete, and other essential endpoints like listing tasks by filter or managing other entities (lists, folders).