ClickUp MCP Server
Provides tools for interacting with ClickUp's API v2 and v3, enabling AI agents to manage workspaces, spaces, folders, lists, tasks, comments, custom fields, time tracking, tags, checklists, dependencies, attachments, docs, chat, views, goals, templates, webhooks, and workspace administrators.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ClickUp MCP Serverlist tasks assigned to me in the 'Sprint 24' list"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ClickUp MCP Server
A multi-user MCP server for ClickUp. Each person who connects authorizes with their own ClickUp account, and every API call runs against their OAuth token — so ClickUp enforces their real permissions and no one can see anything through this server that they could not see in the ClickUp UI.
Covers 150 tools across ClickUp API v2 and v3: the Workspace hierarchy, tasks, comments, custom fields, time tracking, tags, checklists, dependencies, attachments, Docs, Chat, views, goals, templates, webhooks, and Workspace admin.
Why this one is different from the other servers in this estate
The OAuth servers here (Whoop, Withings, Fitbit) hold one token set in a module-level singleton — whoever authenticates last owns the server. That is fine for personal health data and wrong for a team on ClickUp.
This server keeps a per-user grant. The MCP access token presented on each request is mapped to exactly one ClickUp authorization:
Claude → /authorize → app.clickup.com consent → /clickup-callback
→ ClickUp token + GET /v2/user (identity) → grant row (encrypted)
→ MCP code → MCP access + refresh token, both bound to that grant
→ tool call → get_access_token() → grant → ClickUp APIThe response cache, the rate-limit bucket, and the audit trail are all namespaced by grant id.
Related MCP server: ClickUp MCP Server
Quick start
Create a ClickUp OAuth app at https://app.clickup.com/settings/apps. Set the redirect URL to exactly
{SERVER_URL}/clickup-callback.Configure
cp .env.example .env # generate a key for the token store python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"Fill in
CLICKUP_CLIENT_ID,CLICKUP_CLIENT_SECRET,SERVER_URL,TOKEN_ENCRYPTION_KEY, andCLOUDFLARE_TUNNEL_TOKEN.Run — either build from source:
docker compose up -d --build curl https://your-host/health...or run the published image, which is what
docker-compose.ymlpoints at by default:docker compose pull && docker compose up -dPublished to
ghcr.io/npab19/clickup-mcpforlinux/amd64andlinux/arm64on every push tomain, and pullable without authentication. Pin a specific build withCLICKUP_IMAGE_TAG=sha-<commit>in.env.Because the compose file declares both
image:andbuild:,upwill use a locally-built image if one is tagged — rundocker compose pullto fetch the published one, ordocker compose up -d --buildto force a local build.Connect your MCP client to
https://your-host/mcp. It will walk you through the ClickUp consent screen on first use. Each additional user repeats step 4 and gets their own grant.
Configuration
Variable | Default | Purpose |
| — | Required. OAuth app client id. |
| — | Required. OAuth app client secret. |
|
| Required in production. Must be HTTPS; the process refuses to start on a non-HTTPS non-localhost URL. |
| — | Required. Fernet key encrypting ClickUp tokens at rest. |
|
| SQLite store. |
|
|
|
|
| Expose the 20 tools that irreversibly delete content. |
| (empty) | Comma-separated ClickUp emails allowed the 20 admin tools. Empty means nobody. |
|
| Per-user token bucket size. |
|
| Per-user refill rate. |
On the tool profile
150 flat tools measurably degrades a model's tool selection — past roughly 60–80,
mis-picks rise and the tool list alone eats context. Everything is built; the
profile controls what is advertised. core is the recommended default and covers
the daily surface: hierarchy, tasks, comments, custom fields, time tracking, tags,
checklists, dependencies, attachments.
Tools by phase
Phase | Content | Tools |
1 — core hierarchy + tasks | workspaces, spaces, folders, lists, tasks, comments, custom fields, template listing, move-task | 49 |
2 — time tracking + collaboration | time entries, tags, checklists, dependencies, members, attachments, view reading | 40 |
3 — API v3 | Docs, Chat, entity attachments, ACLs | 31 |
4 — admin | view authoring, goals, webhooks, users, guests, groups, audit logs | 30 |
Tools are filed by what they are for, not by which API version serves them —
move_task_to_list is v3-only but is core task work, so it sits in phase 1.
search_tasks (ClickUp's GetFilteredTeamTasks) is the workhorse — one call
against a whole Workspace with filters, instead of walking
Spaces → Folders → Lists → Tasks.
Safety model
Four independent layers, each fail-closed:
ClickUp's own permissions. The real boundary. Every call carries the caller's token, so the server cannot exceed what that person can do in the UI.
Tool gating (
policy.py). Phase, destructive, and admin gates decide what each caller is shown. A hidden tool is neither advertised nor callable.Confirmation guards. Every destructive tool takes
confirm: bool = Falseand refuses without it. ClickUp deletes cascade — a Space takes its Folders, Lists, and Tasks with it.Audit (
audit.py). Everytools/callis recorded with the acting ClickUp user, arguments, outcome, and duration.
Secrets: MCP tokens are stored as SHA-256 hashes; ClickUp tokens are Fernet-encrypted
because they must be replayed upstream. ClickUp access tokens never expire, so a
leaked store is permanently valuable — treat the clickup-data volume as a secret.
ClickUp API notes
Things that differ from a typical OAuth integration, all verified against the live API:
No PKCE, no scopes. ClickUp's authorize endpoint is
https://app.clickup.com/apiand supports neither. The user picks which Workspaces to grant on the consent screen. PKCE between your MCP client and this server is unaffected.Tokens never expire and no refresh token is issued. There is no refresh path in
client.pyby design. A 401 means the user revoked the integration; the only recovery is re-authorization, so the server says so instead of retrying.Rate limits are per token, i.e. per user: 100 req/min on Free, Unlimited, and Business; 1,000 on Business Plus; 10,000 on Enterprise.
The v3 spec is only a fragment — Chat, Docs, and audit logs. Tasks, Lists, Spaces, time tracking, and everything else are v2 only. Both specs are vendored in this repo.
Development
pip install -e ".[dev]"
pytest -q # 367 teststests/test_isolation.py is the gate: it proves the response cache cannot serve one
user's data to another, that each request carries the right token, and that an MCP
token refresh preserves its ClickUp binding. Run it before touching store.py,
client.py, or oauth_provider.py.
Regenerating requirements.lock — do it in a Linux container, not on Windows.
pip-compile resolves for the host platform and will otherwise pin pywin32,
which breaks the Docker build:
docker run --rm -v "${PWD}:/w" -w /w python:3.12.10-slim `
sh -c "pip install -q pip-tools && pip-compile --quiet --strip-extras --output-file requirements.lock pyproject.toml"Layout
src/clickup_mcp/
runtime.py # singletons + startup config checks
store.py # SQLite: clients, codes, tokens, grants, audit
oauth_provider.py # OAuth 2.1 server delegating to ClickUp
client.py # per-grant HTTP client, cache, rate-limit handling
context.py # MCP token -> ClickUp grant (the multi-user hinge)
policy.py # per-identity tool gating
audit.py # tool-call audit trail
rate_limit.py # per-identity token bucket
transform.py # response slimming
validation.py # input coercion + confirm guard
app.py # FastMCP instance + @tool decorator
server.py # callback route, /health, entrypoint
tools/ # 20 modules, 150 toolsThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceEnables comprehensive ClickUp workspace management through 170+ AI-powered tools with GitHub Flavored Markdown support, webhook processing, and production-grade security. Provides 50-70% efficiency gains in common workflows with smart tool suggestions and direct API access.Last updated1227MIT
- Alicense-quality-maintenanceEnables comprehensive project management through ClickUp's API, supporting task creation and updates, time tracking, goal management, and team collaboration within ClickUp's hierarchical workspace structure.Last updated
- Flicense-quality-maintenanceEnables interaction with ClickUp's project management platform through comprehensive task management, workspace hierarchy navigation, time tracking, document management, and team member operations via the complete ClickUp REST API.Last updated
- Alicense-quality-maintenanceEnables AI assistants to interact with ClickUp workspaces through natural language - search tasks, manage workflows, track time, collaborate via comments, and access complete task context including comments and images.Last updated
Related MCP Connectors
Apideck Unified API MCP — 330 tools across 200+ SaaS connectors (accounting, CRM, HRIS, ATS).
100+ read/write tools: GA4, Search Console, Google/Meta Ads, Shopify, WooCommerce, Shopware. BYOK.
ClickUp MCP — wraps the ClickUp REST API v2 (BYO API key)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Npab19/clickup-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server