
ClickUp MCP Server
Supports UIby busybee3333
Full ClickUp integration for AI clients — 93 tools covering tasks, goals, docs, time tracking, and teams, plus 18 interactive React dashboards.
Screenshots

What it does
ClickUp MCP Server gives your AI client complete programmatic access to ClickUp's project management platform. With 93 tools spanning every ClickUp domain and 18 built-in React MCP App dashboards, you can create tasks, track time, manage goals, and browse docs — all from natural language without leaving your AI chat.
Key features
- 93 tools covering tasks, spaces, folders, lists, views, comments, docs, goals, tags, time tracking, teams, webhooks, custom fields, templates, and guests
- 18 React MCP Apps — kanban boards, calendar views, workload dashboards, goal trackers, and more rendered inline
- Supports both Personal API Token and OAuth2 authentication
- Automatic rate limiting, pagination, and error handling
- Full ClickUp API v2 coverage with TypeScript types
Installation
Claude Desktop / VS Code Copilot / Cursor
{
"mcpServers": {
"clickup": {
"command": "node",
"args": ["/path/to/@mcpengine/clickup/dist/index.js"],
"env": {
"CLICKUP_API_TOKEN": "your-api-token"
}
}
}
}
Get your API token at: https://app.clickup.com/settings/apps
Supported hosts
Any MCP client supporting stdio transport — Claude Desktop, VS Code Copilot, Cursor, and compatible tools.
Quick install
npm install @mcpengine/clickupInformation
- Pricing
- free
- Published
- 4/3/2026
- Updated
- 4 months ago
- stars
- 0
Categories
Choose your AI client and follow the steps below.
Cursor
Add to Cursor MCP settings:
```json
{
"clickup": {
"command": "node",
"args": ["/path/to/@mcpengine/clickup/dist/index.js"],
"env": {
"CLICKUP_API_TOKEN": "your-api-token"
}
}
}
```Claude Desktop
Add to your claude_desktop_config.json:
```json
{
"mcpServers": {
"clickup": {
"command": "node",
"args": ["/path/to/@mcpengine/clickup/dist/index.js"],
"env": {
"CLICKUP_API_TOKEN": "your-api-token"
}
}
}
}
```VS Code Copilot
Add to your mcp.json or settings.json under `mcp.servers`:
```json
{
"clickup": {
"command": "node",
"args": ["/path/to/@mcpengine/clickup/dist/index.js"],
"env": {
"CLICKUP_API_TOKEN": "your-api-token"
}
}
}
```





