ClickUp MCP Server
Provides comprehensive access to the ClickUp API, enabling AI assistants to read, write, update, and delete ClickUp docs, pages, spaces, folders, lists, tasks, comments, checklists, and other workspace data.
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 all tasks in my ClickUp workspace that are due today"
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 provides comprehensive access to the ClickUp API ā enabling AI assistants like Cline, Claude Code, and others to read, write, update, and delete ClickUp documentation, plus access the full ClickUp API surface.
⨠Features
š Docs Management (v3 API)
Full CRUD operations on ClickUp Docs and Pages:
get_docs/get_doc/get_doc_pages/get_doc_pageā Read docs & pagescreate_doc/create_doc_pageā Create docs & pagesupdate_doc/update_doc_pageā Update docs & pagesdelete_doc/delete_doc_pageā Delete docs & pagesget_doc_blocks/create_doc_blocks/update_doc_blocks/delete_doc_blocksā Block-level editing
šļø Full ClickUp API Coverage (84+ tools)
Workspaces: Get teams & workspace details
Spaces: Full CRUD for spaces
Folders: Full CRUD for folders
Lists: Full CRUD for lists
Tasks: Full CRUD, filtering, status updates, assignees, tags
Comments: Read/create/update/delete on tasks & lists
Checklists: Full CRUD for checklists & items
Members: View & invite team members
Goals: Full CRUD for goals
Time Tracking: View/create/delete time entries
Views: Read views at any level
Webhooks: Full CRUD for webhooks
Tags: Full CRUD for space tags
Custom Fields: Read & set custom field values
Task Templates: Read/create/delete templates
Plus: Task relationships, links, dependencies, attachments, guests, roles, shared hierarchy
Related MCP server: ClickUp MCP
š¦ Installation
ā” Cara Tercepat: Install Langsung via Cline (Paste Link GitHub)
Setelah repo ini di-push ke GitHub, kamu bisa langsung install MCP server ini ke Cline dengan cara:
Copy link GitHub repo ini, contoh:
https://github.com/azukhrufy/clickup-mcp-serverPaste link tersebut ke Cline dan beri perintah seperti ini:
Install MCP server dari repo ini: https://github.com/azukhrufy/clickup-mcp-serveratau
Tambahkan MCP server ClickUp dari https://github.com/azukhrufy/clickup-mcp-serverCline akan otomatis:
Clone repo ke folder MCP servers
Install dependencies (
npm install)Build project (
npm run build)Menambahkan konfigurasi ke
cline_mcp_settings.json
Masukkan ClickUp API Token saat diminta (lihat bagian Konfigurasi)
Restart Cline ā tools ClickUp akan muncul di panel MCP servers
š¦ Install Langsung dari GitHub (Tanpa Path Lokal)
Cara ini langsung mengarah ke link GitHub ā tidak perlu path lokal. npx akan otomatis clone, install, build, dan jalankan dari repo GitHub.
Konfigurasi di cline_mcp_settings.json:
{
"mcpServers": {
"clickup": {
"command": "npx",
"args": ["-y", "github:azukhrufy/clickup-mcp-server"],
"env": {
"CLICKUP_API_TOKEN": "pk_your_api_token_here"
},
"disabled": false,
"autoApprove": []
}
}
}Untuk branch tertentu:
{
"args": ["-y", "github:azukhrufy/clickup-mcp-server#branch-name"]
}š¦ Install via npx (Setelah di-publish ke npm)
# Langsung jalankan tanpa clone
npx clickup-mcp-serverKonfigurasi di cline_mcp_settings.json:
{
"mcpServers": {
"clickup": {
"command": "npx",
"args": ["-y", "clickup-mcp-server"],
"env": {
"CLICKUP_API_TOKEN": "pk_your_api_token_here"
},
"disabled": false,
"autoApprove": []
}
}
}š¦ Install Manual (Clone)
# Clone the repository
git clone https://github.com/azukhrufy/clickup-mcp-server.git
cd clickup-mcp-server
# Install dependencies
npm install
# Build the server
npm run buildš Configuration
1. Get a ClickUp API Token
Log in to ClickUp
Go to Settings ā Apps (or https://app.clickup.com/settings/apps)
Click Generate under the API Token section
Copy the token (starts with
pk_for Personal Tokens)
2. Add to Cline (VS Code)
Add the MCP server to your Cline settings file:
~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
{
"mcpServers": {
"clickup": {
"command": "node",
"args": ["/absolute/path/to/clickup-mcp-server/build/index.js"],
"env": {
"CLICKUP_API_TOKEN": "pk_your_api_token_here"
},
"disabled": false,
"autoApprove": []
}
}
}3. Add to Claude Desktop
Edit claude_desktop_config.json:
{
"mcpServers": {
"clickup": {
"command": "node",
"args": ["/absolute/path/to/clickup-mcp-server/build/index.js"],
"env": {
"CLICKUP_API_TOKEN": "pk_your_api_token_here"
}
}
}
}š Usage
Reading a ClickUp Doc
ClickUp doc URLs follow this format:
https://app.clickup.com/{team_id}/v/dc/{doc_id}/{page_id}Example with the Cline tools:
get_doc_page(team_id="36768531", doc_id="1322rk-9596", page_id="1322rk-32376")Example prompts you can ask your AI assistant:
"List my ClickUp workspaces"
"Get all docs in my workspace"
"Read the contents of doc XYZ page 123"
"Create a new doc called 'Meeting Notes'"
"Update the status of task ABC to 'in progress'"
"Create a checklist on task DEF"
š ļø Development
# Watch mode for development
npm run dev
# Build TypeScript
npm run buildš Project Structure
clickup-mcp-server/
āāā src/
ā āāā index.ts # MCP server implementation (tool definitions & handlers)
ā āāā clickup-api.ts # ClickUp API v2 + v3 client wrapper
āāā build/ # Compiled JavaScript output
āāā tsconfig.json
āāā package.json
āāā README.mdš§ Architecture Notes
Dual API clients: The server uses ClickUp's v2 API for standard endpoints (teams, spaces, tasks, etc.) and v3 API for Docs endpoints (
/workspaces/{team_id}/docs/...)Stdio transport: Communication happens over standard input/output
TypeScript: Full type safety with strict mode
Error handling: Standardized error messages with HTTP status codes
š License
MIT
š¤ Contributing
Contributions are welcome! Feel free to open issues or submit pull requests.
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
- MIT
- Alicense-qualityCmaintenanceMCP server enabling AI assistants to interact with ClickUp workspaces, including task management, comments, time tracking, and document operations.Last updated16MIT
- Alicense-qualityDmaintenanceA secure and optimized MCP server for integrating ClickUp project management, enabling task CRUD operations, workspace organization, file attachments, and natural language date parsing.Last updatedMIT
- Alicense-qualityBmaintenanceA self-hosted MCP server that enables AI agents to directly interact with your ClickUp workspace, including tasks, lists, folders, comments, time tracking, and more via 51 tools over SSE.Last updated165MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
An MCP server that gives your AI access to the source code and docs of all public github repos
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/azukhrufy/clickup-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server