ClickUp MCP Server
Provides tools for task management, sprint tracking, reporting, workspace navigation, and Doc creation in ClickUp.
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 ServerCreate a task in the Marketing list to update the Q3 budget"
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 Model Context Protocol (MCP) server that connects Claude Code and Claude Desktop to ClickUp. Provides task management, sprint tracking, reporting, workspace navigation, and Doc creation through 25 tools.
Features
Task management — create, update, search, and bulk-edit tasks
Sprint tracking — auto-detect current sprint, list sprint tasks, filter by assignee/status
Reporting — sprint reports with at-risk detection, PR link extraction, status summaries
Workspace navigation — browse spaces, folders, lists; resolve custom task IDs
Comments — read and write task comments
Docs — create a native ClickUp Doc with real markdown tables/headers, unlike a task description
Related MCP server: ClickUp MCP Server
Prerequisites
Python 3.12+
uv (
brew install uv)A ClickUp personal API token
Quick Start
uv tool install "clickup-mcp-server @ git+https://github.com/asaphe/clickup-mcp.git"
clickup-mcp-server setup --codeThe setup script walks you through:
Token retrieval (1Password integration or manual paste)
Workspace configuration (workspace ID required, sprint/team IDs optional)
Client registration (Claude Code, Claude Desktop, or both)
Automatic restart of Claude Desktop if running
To configure Claude Desktop instead, run:
clickup-mcp-server setup --desktopTo configure both clients:
clickup-mcp-server setup --bothAlternative: Run from a Local Clone
Use this flow when you want to hack on the server itself:
git clone https://github.com/asaphe/clickup-mcp.git
cd clickup-mcp
uv sync --dev
uv tool install --editable .
python3 setup_mcp.pyThis uses the same setup wizard, but runs it from the repo root layout used by this public package.
Run uv tool install --editable . first: the setup wizard only installs
clickup-mcp-server via uv tool install when it isn't already on your PATH,
so an editable install done beforehand is preserved instead of being replaced
by the published GitHub version.
Configuration
All configuration is via environment variables. Only CLICKUP_API_TOKEN and WORKSPACE_ID are required — the rest enable optional features.
Required
Variable | Description |
| Personal API token from https://app.clickup.com/settings/apps |
| Your ClickUp workspace (team) ID |
Optional — Sprint Detection
Variable | Description |
| Space ID containing your sprints. Required for sprint tools. |
| Folder ID within the space that holds sprint lists. Required for sprint tools. |
Optional — Team Labels
Variable | Description |
| Custom field ID for Component/Team labels |
| JSON mapping of team names to label IDs (see below) |
Example CLICKUP_TEAM_LABELS:
{"backend": "uuid-1", "frontend": "uuid-2", "example-team": "uuid-3"}Optional — Tuning
Variable | Default | Description |
|
| ClickUp API base URL |
|
| HTTP request timeout in seconds |
|
| Max retry attempts for failed/rate-limited requests |
Finding Your IDs
Workspace ID: Settings → Workspaces → look at the URL or API response
Space ID: Click on a Space → the ID is in the URL (
/s/{space_id}/...)Folder ID: Click on a Folder → inspect the URL or use the
get_workspace_hierarchytoolCustom Field ID: Use the ClickUp API:
GET /list/{list_id}/fieldTeam Label IDs: Use the ClickUp API:
GET /list/{list_id}/field→ find the labels dropdown field → extract option IDs
Tools
28 tools across 6 categories:
Sprint Management
Tool | Description |
| Auto-detect the active sprint by date |
| Force-refresh the cached sprint |
| List tasks in the current sprint (filter by assignee/status) |
Task Management
Tool | Description |
| Get task details by ID (DEV-1234 or UUID) |
| Create a task in any list |
| Create a task in the current sprint (auto-assign, team, points) |
| Update status, assignee, description, points, dates |
| Search tasks by name |
| Get tasks assigned to the current user |
| Get all tasks in a specific list |
| Move a task to a different list |
| Batch-update status/team/assignee across multiple tasks |
| Check and fix missing fields (assignee, team, points) |
| Delete a task permanently |
Comments
Tool | Description |
| Post a comment on a task |
| Retrieve comments from a task |
Reporting
Tool | Description |
| Sprint report by assignee with status counts and at-risk flags |
Workspace
Tool | Description |
| Show the authenticated user |
| Browse spaces, folders, and lists |
| Get the ClickUp URL for a task |
| Add a tag to a task |
| List available team labels |
| Check configured team labels against live ClickUp options |
Docs
Tool | Description |
| Create a native ClickUp Doc (v3 API) with one page of markdown content; returns its URL. Create-only, PRIVATE by default — sharing is a manual follow-up in the ClickUp UI. |
| Overwrite an existing Doc page's content in place (replace-only), with an optional retitle; returns its URL. |
| Get a Doc's metadata (name, parent location, visibility). |
| Get every page of a Doc, content included, as a flat list — sub-pages are flattened in, not dropped. |
| Get a single page's content by |
ClickUp's v3 Docs API has no DELETE endpoint for Docs or Pages — confirmed against
developer.clickup.com's own llms.txt index and public OpenAPI spec, and empirically
(a live DELETE call against a real doc returned 405 Method Not Allowed, not 404,
meaning the route exists but the verb is rejected). So there's no delete_doc tool, and
update_doc_page is replace-only by design: the client retries transport errors,
including a timeout that can fire after the server already applied the edit — a replace
is idempotent under retry, but append/prepend would silently double-apply.
ClickUp's public API also has no Doc/page comment endpoint (only task/list/view comments exist) — reading a Doc's comment panel still requires the browser.
Usage Examples
In Claude Code or Claude Desktop, just ask naturally:
"show my tasks"
"sprint report for backend"
"create a task for fixing the login bug"
"mark DEV-1234 as done"
"what's the current sprint?"
"show unassigned tasks in the sprint"
"write this up as a doc so the tables render properly"
"read that doc back to me"
Key Patterns
Task IDs: Both custom IDs (
DEV-1234,PROJ-456) and UUIDs are accepted everywhere"me" as assignee: Resolved automatically from the API token
Sprint auto-detection: Current sprint is detected by date and cached per session
Rate limiting: Automatic retry with exponential backoff on 429 responses
Concurrent comment fetching: Sprint reports fetch PR links from comments with bounded concurrency
Coexistence with Built-in ClickUp MCP
This server works alongside the official ClickUp MCP connector. The built-in handles features not covered here (time tracking, chat, and a Doc's comment panel — ClickUp's public API has no Doc-comment endpoint). Doc create/read/update are covered here; deletion isn't possible via either server, since the v3 Docs API exposes no delete endpoint. You can register both, though having both may cause tool-selection ambiguity for overlapping operations.
Development
uv sync --dev
uv run pytest
uv run mypy clickup_mcp_server
uv run ruff check .Architecture
clickup_mcp_server/
server.py — FastMCP server entry point and instructions
client.py — Async HTTP client with retry and rate-limit handling
config.py — Settings (env var based, no hardcoded IDs)
models.py — Pydantic models for API responses
tools/
sprint.py — Sprint detection and caching
tasks.py — Task CRUD, search, bulk operations
comments.py — Comment read/write
reporting.py — Sprint reports with at-risk detection
workspace.py — User info, hierarchy, tags
docs.py — Doc create/read/update (v3 API)License
MIT
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
- AlicenseBqualityDmaintenanceClickUp MCP Server enables AI assistants to seamlessly interact with your ClickUp workspace. This powerful integration allows Claude to create and manage tasks, access documents, organize folders and lists, add comments, and handle checklists—all through natural conversation.4218842MIT
- Flicense-qualityDmaintenanceEnables AI assistants to interact with ClickUp's project management platform. Supports comprehensive task management, workspace administration, and list operations through natural language commands.
- AlicenseAqualityDmaintenanceEnables AI agents to manage ClickUp tasks, spaces, lists, and folders through natural language, supporting CRUD operations and workspace navigation.1224,4061MIT
- Alicense-qualityDmaintenanceEnables interaction with Clickup's project management tools through the MCP protocol, allowing task and project operations via natural language.1MIT
Related MCP Connectors
Persistent context for Claude. Your AI always knows your projects and next actions across sessions.
Connect Claude to Fathom meeting recordings, transcripts, and summaries
WHOOP recovery, strain, sleep and workouts in Claude via official WHOOP OAuth. Free, open source.
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/asaphe/clickup-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server