ClickUp Integration
STDIOMCP Server for ClickUp API, enabling Claude to interact with ClickUp workspaces.
MCP Server for ClickUp API, enabling Claude to interact with ClickUp workspaces.
MCP Server for the ClickUp API, enabling Claude to interact with ClickUp workspaces.
clickup_authenticate
api_token
(string): ClickUp API token for authenticationworkspace_id
(string): ClickUp workspace ID for authenticationclickup_get_task
api_token
(string): ClickUp API token for authenticationtask_id
(string): The ID of the ClickUp task to retrieveclickup_get_task_by_custom_id
api_token
(string): ClickUp API token for authenticationcustom_id
(string): The custom ID of the ClickUp task to retrieveworkspace_id
(string): The workspace ID required for the API requestclickup_get_tasks
api_token
(string): ClickUp API token for authenticationworkspace_id
(string): ClickUp workspace IDtask_ids
(string[]): List of task IDs to retrieveGet your ClickUp API Token:
Get your Workspace ID:
https://app.clickup.com/{workspace_id}/home
Add the following to your claude_desktop_config.json
:
{ "mcpServers": { "clickup": { "command": "npx", "args": [ "-y", "mcp-clickup" ], "env": { "CLICKUP_API_TOKEN": "your-api-token", "CLICKUP_WORKSPACE_ID": "your-workspace-id" } } } }
{ "mcpServers": { "clickup": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "CLICKUP_API_TOKEN", "-e", "CLICKUP_WORKSPACE_ID", "mcp/clickup" ], "env": { "CLICKUP_API_TOKEN": "your-api-token", "CLICKUP_WORKSPACE_ID": "your-workspace-id" } } } }
If you encounter errors, verify that:
Docker build:
docker build -t mcp/clickup .
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.