ClickUp MCP Server
Click on "Deploy 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 'Update README' in the Docs list."
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
Complete Model Context Protocol server for ClickUp - the all-in-one productivity platform.
Features
93 Tools across all ClickUp domains
18 React MCP Apps for rich interactive UIs
Full API Coverage: Tasks, Spaces, Folders, Lists, Views, Comments, Docs, Goals, Tags, Time Tracking, Teams, Webhooks, Custom Fields, Templates, and Guests
Production Ready: Rate limiting, pagination, error handling, comprehensive types
Related MCP server: clickup-mcp
Installation
npm install @mcpengine/clickupConfiguration
Add to your MCP settings:
{
"mcpServers": {
"clickup": {
"command": "node",
"args": ["/path/to/@mcpengine/clickup/dist/index.js"],
"env": {
"CLICKUP_API_TOKEN": "your-api-token"
}
}
}
}Authentication
ClickUp MCP supports two authentication methods:
Personal API Token (recommended for development):
Get your token from: https://app.clickup.com/settings/apps
Set
CLICKUP_API_TOKENenvironment variable
OAuth2 (for production apps):
Set
CLICKUP_CLIENT_ID,CLICKUP_CLIENT_SECRET, andCLICKUP_OAUTH_TOKEN
Available Tools
Tasks (17 tools)
clickup_tasks_list- List tasks with filteringclickup_tasks_get- Get task detailsclickup_tasks_create- Create new taskclickup_tasks_update- Update taskclickup_tasks_delete- Delete taskclickup_tasks_filter- Advanced task filteringclickup_tasks_bulk_update- Bulk update tasksclickup_tasks_get_time_entries- Get time entries for taskclickup_tasks_add_time_entry- Add time entryclickup_tasks_get_custom_fields- Get custom field valuesclickup_tasks_set_custom_field- Set custom field valueclickup_tasks_add_dependency- Add task dependencyclickup_tasks_remove_dependency- Remove dependencyclickup_tasks_list_members- List task membersclickup_tasks_add_comment- Add comment to taskclickup_tasks_get_comments- Get task commentsclickup_tasks_search- Search tasks
Spaces (5 tools)
clickup_spaces_list- List spacesclickup_spaces_get- Get space detailsclickup_spaces_create- Create spaceclickup_spaces_update- Update spaceclickup_spaces_delete- Delete space
Folders (5 tools)
clickup_folders_list- List foldersclickup_folders_get- Get folder detailsclickup_folders_create- Create folderclickup_folders_update- Update folderclickup_folders_delete- Delete folder
Lists (7 tools)
clickup_lists_list- List listsclickup_lists_get- Get list detailsclickup_lists_create- Create listclickup_lists_update- Update listclickup_lists_delete- Delete listclickup_lists_add_task- Add task to listclickup_lists_remove_task- Remove task from list
Views (5 tools)
clickup_views_list- List viewsclickup_views_get- Get view detailsclickup_views_create- Create viewclickup_views_update- Update viewclickup_views_delete- Delete view
Comments (5 tools)
clickup_comments_list- List commentsclickup_comments_get- Get commentclickup_comments_create- Create commentclickup_comments_update- Update commentclickup_comments_delete- Delete comment
Docs (3 tools)
clickup_docs_list- List docsclickup_docs_get- Get docclickup_docs_create- Create docclickup_docs_search- Search docs
Goals (7 tools)
clickup_goals_list- List goalsclickup_goals_get- Get goalclickup_goals_create- Create goalclickup_goals_update- Update goalclickup_goals_delete- Delete goalclickup_goals_add_key_result- Add key resultclickup_goals_update_key_result- Update key result
Tags (5 tools)
clickup_tags_list- List tagsclickup_tags_create- Create tagclickup_tags_update- Update tagclickup_tags_delete- Delete tagclickup_tags_add_to_task- Add tag to task
Checklists (6 tools)
clickup_checklists_create- Create checklistclickup_checklists_update- Update checklistclickup_checklists_delete- Delete checklistclickup_checklists_create_item- Create checklist itemclickup_checklists_update_item- Update itemclickup_checklists_delete_item- Delete item
Time Tracking (7 tools)
clickup_time_list_entries- List time entriesclickup_time_get_entry- Get time entryclickup_time_create- Create time entryclickup_time_update- Update time entryclickup_time_delete- Delete time entryclickup_time_get_running- Get running timerclickup_time_start- Start timerclickup_time_stop- Stop timer
Teams (6 tools)
clickup_teams_list_workspaces- List workspacesclickup_teams_get_workspace- Get workspaceclickup_teams_list_members- List membersclickup_teams_get_member- Get memberclickup_teams_list_groups- List groupsclickup_teams_create_group- Create group
Webhooks (4 tools)
clickup_webhooks_list- List webhooksclickup_webhooks_create- Create webhookclickup_webhooks_update- Update webhookclickup_webhooks_delete- Delete webhook
Custom Fields (4 tools)
clickup_custom_fields_list- List custom fieldsclickup_custom_fields_get- Get custom fieldclickup_custom_fields_set_value- Set field valueclickup_custom_fields_remove_value- Remove value
Templates (2 tools)
clickup_templates_list- List templatesclickup_templates_apply- Apply template
Guests (6 tools)
clickup_guests_invite- Invite guestclickup_guests_get- Get guestclickup_guests_edit- Edit guestclickup_guests_remove- Remove guestclickup_guests_add_to_task- Add guest to taskclickup_guests_add_to_list- Add guest to list
React MCP Apps (18 Total)
All apps are built with React + Vite and use the standalone app pattern. Each app has its own directory in src/ui/react-app/ with App.tsx, index.html, and vite.config.ts.
Task Management (4 apps)
task-dashboard - Task overview with status counts, overdue tasks, and priority breakdown
task-detail - Full task view with description, custom fields, subtasks, comments, and time tracking
task-grid - Spreadsheet-style task view with sorting and filtering
task-board - Kanban board view with tasks organized by status
Workspace & Organization (4 apps)
space-overview - Space dashboard showing folders, lists, and members
folder-overview - Folder detail view with lists and statistics
list-view - List detail view with tasks and filters
workspace-overview - High-level workspace dashboard with spaces and team metrics
Views & Visualization (1 app)
calendar-view - Monthly calendar view with task due dates
Goals & Tracking (2 apps)
goal-tracker - Track goals, targets, and progress metrics
member-workload - Team capacity and workload distribution view
Time Tracking (2 apps)
time-dashboard - Time tracking overview with hours logged and team analytics
time-entries - List of time entries with filtering and export
Content & Collaboration (3 apps)
doc-browser - Browse and view ClickUp Docs
comment-thread - View and manage task comments and discussions
checklist-manager - Create and manage checklists within tasks
Configuration & Admin (2 apps)
tag-manager - Manage workspace tags and tag organization
template-gallery - Browse and apply task and list templates
API Coverage
This server implements the complete ClickUp API v2:
Rate limiting and pagination handled automatically
Comprehensive error handling and retries
Development
# Install dependencies
npm install
# Build
npm run build
# Watch mode
npm run watchLicense
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Marketo MCP server for AI. 130 tools to operate Marketo from Claude, Cursor, or ChatGPT.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceEnables integration with ClickUp project management platform through a Model Context Protocol server, providing tooling for task management, workspace operations, and team collaboration with flexible authentication and deployment options.268 npm-
- AlicenseBqualityBmaintenanceLightweight ClickUp MCP server for task management with 37 tools and token-optimized responses to reduce API verbosity.3741 npm3MIT
- AlicenseNot gradedqualityDmaintenanceA 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.268 npmMIT
- AlicenseAqualityAmaintenanceA comprehensive MCP server for the ClickUp API exposing 166 tools to manage Spaces, Folders, Lists, Tasks, Docs, and more, enabling LLMs to read and drive a ClickUp Workspace.1001Apache 2.0