The ClickUp MCP Server enables AI agents to interact with ClickUp tasks, spaces, lists, and folders through a standardized protocol. It serves as a bridge between AI applications and your ClickUp workspace, allowing for automated task management and workspace organization.
Get your credentials:
Go to Features in settings (or MCP Servers depending on version)
Add under MCP Servers:
npx -y @taazkareem/clickup-mcp-server@latest \
--env CLICKUP_API_KEY=your_api_key_here \
--env CLICKUP_TEAM_ID=your_team_id_here
Replace the credentials and click Save
Use Natural Language to interact with your ClickUp Workspace!
The server is also hosted on Smithery, where you can preview available tools or copy commands for specific client applications.
🎯 Task Management
📂 Workspace Organization
🔄 Integration Features
// Create a simple task in a list
{
"name": "Complete project proposal",
"listName": "Marketing Projects"
}
// Create several tasks at once
{
"tasks": [
{
"name": "Research competitors",
"listName": "Market Research",
"description": "Analyze top 5 competitors in our space"
},
{
"name": "Draft social media plan",
"listName": "Marketing Projects",
"due_date": "tomorrow at 5pm"
}
]
}
// Update task properties
{
"taskName": "Complete project proposal",
"description": "Create detailed project plan with timeline and resources",
"priority": "high",
"due_date": "next Friday at noon"
}
// Move a task to a different list
{
"taskName": "Design homepage mockup",
"listName": "In Progress"
}
// Create a new folder and lists within it
{
"name": "Q2 Projects",
"spaceName": "Marketing"
}
// Then create lists in that folder
{
"name": "Social Media Campaigns",
"folderName": "Q2 Projects"
}
The server provides clear error messages for common issues:
When errors occur, check the parameters you're providing and ensure you have the correct permissions in your ClickUp workspace.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "clickup-mcp-server" '{"command":"npx","args":["-y","@taazkareem/clickup-mcp-server@latest"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"clickup-mcp-server": {
"command": "npx",
"args": [
"-y",
"@taazkareem/clickup-mcp-server@latest"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"clickup-mcp-server": {
"command": "npx",
"args": [
"-y",
"@taazkareem/clickup-mcp-server@latest"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect