clickup-custom-mcp
Provides tools for interacting with a ClickUp workspace, enabling management of tasks, search, and task creation/updates via the ClickUp REST API v2.
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-custom-mcpwhat's on my plate for this week?"
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-custom-mcp
A stdio MCP server that talks to the ClickUp REST API v2 directly.
It exists because ClickUp's hosted MCP (mcp.clickup.com) caps a Free workspace at
50 calls per 24 hours and refuses personal API tokens, while the same account's REST
API allows 100 requests per minute. This server trades a daily ceiling for a
per-minute one, and keeps the token on your machine instead of in a hosted integration.
Requirements
Node 20+ (see
enginesinpackage.json)A ClickUp personal API token
Related MCP server: clickup-mcp
Setup
npm install
npm run buildGenerate a token in ClickUp: avatar → Settings → Apps → API Token → Generate.
Copy .env.example to .env at the repo root (.env is gitignored) and fill in the token:
cp .env.example .envThe server loads that file itself via process.loadEnvFile, so the token never has to be
written into Claude Code's config — where claude mcp add -e would store it in plaintext.
Anything already present in the environment wins over .env, and if the file is missing
(or the Node build has no loadEnvFile) the server simply falls back to plain environment
variables.
Environment variables
Variable | Required | Purpose |
| yes | Personal API token. The server exits with a message if it's unset. |
| no | Pin a workspace. Without it the first workspace the token can see is used, and a note goes to stderr if there is more than one. |
| no | Requests/minute the client allows itself. Defaults to 90 — deliberate headroom under ClickUp's 100. |
Register with Claude Code
claude mcp add clickup-custom-mcp -- node /absolute/path/to/clickup-custom-mcp/dist/index.jsNo -e CLICKUP_API_TOKEN=... is needed — the .env file covers it.
Run it standalone with npm start. stdout is the JSON-RPC channel, so every diagnostic
(including a per-request log line with ClickUp's remaining quota) goes to stderr.
Tools
Six coarse tools, each shaped around a job rather than an endpoint. The fan-out lives in
the server, not in the model: one get_my_work call costs 2 HTTP requests where walking
space → folder → list → task from the model side costs thirty.
Tool | What it does |
| Spaces, folders, lists (with their status names) and members, plus your own numeric user id. Call it first when you need an id for anything else. Cached 15 minutes; optionally includes custom field definitions. |
| Every open task assigned to you across the workspace, grouped by overdue / today / this week / later. The one for a standup or a backlog sweep. |
| Filtered task query across the whole workspace in one request — lists, spaces, assignees, statuses, tags, due/updated date ranges, ordering. Paginates automatically. |
| Full detail for one task: description, custom field values, subtasks, optionally comments. |
| Create one or many tasks in a single call. Each is reported individually; one failure does not abort the rest. |
| Update one or many tasks — status, assignees, due dates, priority, renames, archive. Also reported individually. |
Every tool reports how many HTTP requests it spent, and any result that hit the page cap says Truncated rather than quietly returning a short list.
Design notes
Rate gate (
src/clickup.ts) — a sliding 60-second window plus a concurrency cap of 4. A fixed-interval refill would let a burst of 90 fire in the first second and then stall for 59; tracking actual send times spreads the same budget.429 handling — backoff is driven by ClickUp's own
X-RateLimit-Resetheader, retried up to 3 times. The client also coasts down whenX-RateLimit-Remainingdrops to 2 rather than taking a 429 mid-fan-out.Structure cache — hierarchy, custom fields and member lists are memoised for 15 minutes. Task data is deliberately never cached.
Compact output (
src/format.ts) — raw ClickUp task JSON runs 2–4KB each. Every tool projects down to the fields a person actually reads and renders markdown instead of JSON.
Layout
src/index.ts entrypoint: env loading, client + server wiring, stdio transport
src/clickup.ts REST client: rate gate, retry/backoff, TTL cache, task pagination
src/tools.ts the six MCP tool definitions and their fan-out
src/format.ts task projection and markdown renderingMaintenance
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
- MIT
- AlicenseBqualityCmaintenanceLightweight ClickUp MCP server for task management with 37 tools and token-optimized responses to reduce API verbosity.37453MIT
- AlicenseBqualityBmaintenanceCustom MCP server integrating ClickUp tasks and docs/wikis via REST API with Personal Access Token.8267MIT
- AlicenseBqualityDmaintenanceMCP server for ClickUp task management, enabling task search, creation, update, deletion, workspace info retrieval, and comment management via ClickUp API v2.1552MIT
Related MCP Connectors
A basic MCP server to operate on the Postman API.
A MCP server built for developers enabling Git based project management with project and personal…
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
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/zong09/clickup-custom-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server