clickup-mcp-read
Provides read-only access to ClickUp, allowing agents to inspect nested task trees, full task activity histories, workspace hierarchy, search tasks, and read comments, time entries, and tags without making any changes.
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-readshow me the task tree for list Q3 Delivery"
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-read
A strictly read-only ClickUp MCP server. It answers questions about a workspace — including a whole nested subtask tree, or a task's whole activity history, in one call — and it cannot change anything.
This is clickup-mcp-full
with every write path removed. Like that server, it wraps
@twofeetup/clickup-mcp
rather than forking it, so upstream fixes arrive with a dependency bump.
Use it for agents that should analyse, report on, or plan against ClickUp — standups, audits, roadmap questions, "what changed last week" — without any chance of a stray tool call editing a task.
What it cannot do
Refused outright, at three independent layers: create, update, delete, move or duplicate a task; create, update or delete a list or folder; post a comment; start, stop, add or delete a time entry; create, rename or delete a tag, or add one to a task; upload an attachment; create or edit a document.
Related MCP server: ClickUp MCP
Why this is a separate server rather than a flag
Upstream consolidated nineteen tools into a handful of multi-action ones, so
the read/write line does not fall between tools — it falls inside them.
task_comments both reads comments and posts them. task_time_tracking both
reports time and starts timers. operate_tags both lists tags and deletes
them. A tool allowlist cannot express "reads only"; the unit that has to be
filtered is the (tool, action) pair, and that filtering has to live
somewhere the calling agent cannot reach.
Three layers hold the line, so no single mistake opens a write:
The child never registers the write tools. The wrapped server is started with
ENABLED_TOOLSpinned to the read-capable set, somanage_taskand friends have no handler at all.Every call is checked here first. A
tools/callis matched against the tool allowlist and the per-tool action allowlist before it is forwarded — so a client that names a tool it was never offered is still refused.The advertised schema is pruned.
tools/listdrops the write tools, strips write actions out of each survivingactionenum, and removes the parameters that exist only to carry a write. An agent is never shown an affordance it would then be denied.
The two tools implemented in this server reach ClickUp through a single helper
that hardcodes GET and takes a path, not a method, so they cannot become
writes either.
This is not a substitute for a read-only token. ClickUp issues one personal token with the full rights of the user who created it; anything else holding that token can still write. This bounds what this server will do with it. For a hard guarantee, create the token under a view-only ClickUp account and use it here.
Why the subtask tree
Upstream's only route to subtasks is search_tasks with include_subtasks,
which calls GET /task/{id}?subtasks=true and returns full task objects for
the direct children only. On a task with fifty subtasks nested several levels
deep that is both incomplete and ruinous for an agent's context window. The
alternative, one request per node, is worse.
get_task_tree walks the containing list once instead. ClickUp's
GET /list/{id}/task?subtasks=true returns every task in the list along with
its parent pointer, so the tree is reassembled locally: two requests total
regardless of depth or width, and the output is one compact line per task.
Task tree for 86capt3b: 23 task(s) including the root.
Statuses: in progress: 3, open: 14, complete: 6
List: Q3 Delivery
86capt3b [in progress] Migrate billing service <ivan>
86captk1 [complete] Audit current schema <olena>
86captk2 [in progress] Write migration scripts <ivan>
86captm7 [open] Handle partial refunds
86captm8 [open] Backfill historical rows
86captk3 [open] Cutover planWhy the activity log
Upstream's task_comments reads comments and nothing else, so "who moved this
deadline", "when did it go to in progress", "who added that tag" are simply
unanswerable — those events live in ClickUp's task history, which the
documented v2 API does not expose at any endpoint.
get_task_activity reads the history the ClickUp web app itself reads
(GET /v1/task/{id}/history), merges it with the comments, de-duplicates the
comments that appear in both, and renders one chronological log: every status
change, due and start date move, assignee, watcher, tag, priority, name and
description edit, custom field, list or folder move, attachment, checklist,
time estimate and task relationship, with who did it and when.
Activity for 86capt3b (DEV-12): Migrate billing service
7 event(s).
Kinds: Comment: 2, Due date: 1, Tags: 1, Assignee added: 1, Status: 1, Custom field: 1
2026-03-06 12:00 ivan — Cutover moved to next week.
2026-03-05 09:00 ivan — Due date: 2026-03-10 12:00 → 2026-03-24 12:00
2026-03-04 15:30 olena — Tags: blocked, billing
2026-03-04 11:05 olena — Assignee added: ivan
2026-03-03 08:00 ivan — Status: to do → in progress
2026-03-02 17:45 olena — Schema audit done, moving on.
2026-03-01 10:00 ivan — Custom field "Sprint": S-14Narrow it with fields (raw ClickUp field names: status, due_date,
assignee_add, tag, custom_field, ...), since (ISO date or millisecond
timestamp), limit, include_comments and oldest_first. Timestamps are UTC.
Install
Nothing to clone or build. Point your agent at the package and it is fetched on first launch.
Claude Code
claude mcp add clickup_read \
--env CLICKUP_API_KEY=pk_your_token \
--env CLICKUP_TEAM_ID=9012345678 \
-- npx -y github:breckenreed/clickup-mcp-readClaude Desktop, Cursor, Windsurf, or any client using mcpServers JSON
{
"mcpServers": {
"clickup_read": {
"command": "npx",
"args": ["-y", "github:breckenreed/clickup-mcp-read"],
"env": {
"CLICKUP_API_KEY": "pk_your_token",
"CLICKUP_TEAM_ID": "9012345678"
}
}
}
}Hermes (~/.hermes/config.yaml)
mcp_servers:
clickup_read:
command: npx
args: ["-y", "github:breckenreed/clickup-mcp-read"]
env:
CLICKUP_API_KEY: "${CLICKUP_API_KEY}"
CLICKUP_TEAM_ID: "${CLICKUP_TEAM_ID}"
connect_timeout: 60
keepalive_interval: 60
idle_timeout_seconds: 1800Global install, if you would rather not resolve from GitHub on every launch:
npm install -g github:breckenreed/clickup-mcp-readthen use clickup-mcp-read as the command with no arguments.
Running this alongside clickup-mcp-full is fine — give them different server
names and the agent sees two distinct tool sets.
Credentials
Variable | Where to get it |
| ClickUp, Settings, Apps, API Token. Starts with |
| The number in your ClickUp URL, or |
Tools
Every tool here is read-only. Nine are exposed by default.
Tool | What it does |
| Task plus all nested subtasks, any depth, one call |
| Full history of a task: system events plus comments |
| Spaces, folders, lists as a tree |
| One task by id, one list, or workspace-wide filters |
| Details of a single list or folder |
| Resolve a name or email to an assignee id |
| Read comments ( |
| Read time entries ( |
| List the tags in a space ( |
With DOCUMENT_SUPPORT=true, two more appear: list_documents, and
manage_document_page narrowed to its get and list actions.
Upstream's manage_task, manage_container, attach_file_to_task and
manage_document are not present and cannot be enabled.
Options
Variable | Default | Effect |
| the nine tools above | Comma-separated allowlist. May only narrow the read-only set; write tools listed here are ignored with a warning on stderr. |
| unset | Comma-separated blocklist. Only ever subtracts. |
|
| Milliseconds between ClickUp API calls. See below. |
|
|
|
Raise REQUEST_SPACING on a shared workspace. The default allows about ten
requests per second, while ClickUp's per-token limit is roughly 100 per minute
on most plans. The limit is counted against the token, not the tool, so an
agent that exhausts it also breaks every other integration running under the
same token. 700 keeps you under a 100 per minute ceiling.
Notes on behaviour
Refusals are tool errors, not transport errors. A blocked call comes back
as a normal tool result with isError and a sentence saying the server is
read-only and the write is not possible here. Agents read that and move on;
a JSON-RPC error tends to get retried.
Subtasks in another list. The tree is built by walking the list that contains the root task. If your workspace places subtasks in a different list from their parent, those will not appear, and the server falls back to the direct children reported by the task endpoint. Open an issue if you hit this and it matters.
The activity endpoint is undocumented. GET /v1/task/{id}/history is what
the ClickUp web app calls, not part of the published v2 API: a personal token
can read it today, but ClickUp does not promise that, and some plans or tokens
get a 403. That failure is not fatal — get_task_activity then returns the
comments plus a line saying the system events were unavailable, so the tool
never simply breaks. It pages up to ten pages of history and ten of comments,
spaced by REQUEST_SPACING.
search_tasks descriptions. The upstream description ("Works 3 ways")
leads smaller models to put a plain id like 86capt3b into customTaskId,
which is only for prefixed ids like DEV-123. Such a call falls through to the
workspace-search branch and fails with "At least one filter parameter is
required", an error that names the wrong problem, after which the model tends
to invent filters instead of fixing the field. This server replaces that
description with the single rule the model actually needs.
Running inside Docker with a bind-mounted home. If your agent launches MCP
servers with HOME pointing at a bind mount, npx rebuilds its package cache
across that mount on every connect, which can take minutes and time out. Install
globally inside the image instead and point command: at the binary.
Troubleshooting
Check that the server starts and lists its tools:
CLICKUP_API_KEY=pk_... CLICKUP_TEAM_ID=... npx -y github:breckenreed/clickup-mcp-read --helpMissing required environment means the variables did not reach the process:
most clients require them in the server's own env block, not your shell.
A 401 from any tool means the token is wrong or was revoked. A 429 means you
are hitting the rate limit, so raise REQUEST_SPACING.
License
MIT, like the upstream server it wraps. @twofeetup/clickup-mcp is the
MIT-licensed community continuation of the pre-paid tree of
@taazkareem/clickup-mcp-server.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This 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 Connectors
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
ClickUp MCP — wraps the ClickUp REST API v2 (BYO API key)
Read-only MCP server for turva.dev, an agent-readiness audit and advisory service.
Read-only MCP server for The Quiet Protocol's engines, benchmarks, proof, and business data.
Related MCP Servers
- AlicenseBqualityDmaintenanceMCP server for ClickUp task management, enabling task search, creation, update, deletion, workspace info retrieval, and comment management via ClickUp API v2.1565MIT
- AlicenseNot gradedqualityBmaintenanceMCP server enabling AI assistants to interact with ClickUp workspaces, including task management, comments, time tracking, and document operations.65MIT
- AlicenseNot gradedqualityCmaintenanceRead-only MCP server for the Weeek Public API. Use it from Cursor or Claude Code to browse projects, search tasks, read attachments, and (with a browser session) load task comments.118MIT
- AlicenseNot gradedqualityAmaintenanceRead-only MCP server for Clockify time tracking, exposing 60 raw read tools and five workflows for status, workspace overview, and review of days/weeks.MIT
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/breckenreed/clickup-mcp-read'
If you have feedback or need assistance with the MCP directory API, please join our Discord server