
ClickUp MCP Server
Enable AI assistants to seamlessly interact with ClickUp data. Access and manipulate workspaces, tasks, and documents effortlessly through a standardized API interface. Enhance your productivity by integrating ClickUp with your AI workflows.
Installation
Installing for Claude Desktop
Option 1: One-Command Installation
npx mcpbar@latest install nsxdavid/clickup-mcp-server -c claude
This command will automatically install and configure the ClickUp MCP Server MCP server for your selected client.
Option 2: Manual Configuration
Run the command below to open your configuration file:
npx mcpbar@latest edit -c claude
After opening your configuration file, copy and paste this configuration:
View JSON configuration
{
"mcpServers": {
"ClickUp MCP Server": {
"command": "node",
"args": [
"/path/to/clickup-mcp-server/build/index.js"
],
"env": {
"CLICKUP_API_TOKEN": "YOUR_API_TOKEN_HERE"
},
"disabled": false,
"autoApprove": []
}
}
}
ClickUp MCP Server
A Model Context Protocol (MCP) server that provides a standardized interface for AI assistants to interact with the ClickUp API. This server enables AI systems to access and manipulate ClickUp data such as workspaces, spaces, folders, lists, tasks, docs, comments, and checklists.
Available Tools
get_workspaces
: Get the list of workspacesget_spaces
: Get spaces within a workspaceget_tasks
: Get tasks from a listcreate_task
: Create a new taskupdate_task
: Update an existing taskget_docs_from_workspace
: Get all docs from a workspacecreate_folder
: Create a new folder in a spaceget_lists
: Get lists in a folder or spacecreate_list
: Create a new list
Installation
git clone https://github.com/nsxdavid/clickup-mcp-server.git
cd clickup-mcp-server
npm install
Get ClickUp API Token
- Log in to ClickUp account
- Go to Settings > Apps
- Click "Generate API Token"
- Copy the token
Configuration
Add to the MCP settings file:
{
"mcpServers": {
"clickup": {
"command": "node",
"args": ["/path/to/clickup-mcp-server/build/index.js"],
"env": {
"CLICKUP_API_TOKEN": "YOUR_API_TOKEN_HERE"
},
"disabled": false,
"autoApprove": []
}
}
}
- Make sure to correct the path
- Make sure to supply your API token
Alternate Installation (npx)
For users who prefer not to clone the repository, the package can be run directly using npx:
{
"mcpServers": {
"clickup": {
"command": "npx",
"args": [
"-y",
"clickup-mcp-server"
],
"env": {
"CLICKUP_API_TOKEN": "YOUR_API_TOKEN_HERE"
},
"disabled": false,
"autoApprove": []
}
}
}
- Replace
YOUR_API_TOKEN_HERE
with your API token - No installation or cloning is required with this method
Configuration File Locations
- Cline VSCode Extension:
~/.vscode/extensions/saoudrizwan.claude-dev/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
- Claude Desktop Apps:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
Development
Building
npm run build
Running Tests
npm test
License
MIT
Stars
15Forks
5Last commit
3 months agoRepository age
4 monthsLicense
MIT
Auto-fetched from GitHub .
MCP servers similar to ClickUp MCP Server:

Stars
Forks
Last commit

Stars
Forks
Last commit

Stars
Forks
Last commit