The ClickUp MCP server enables seamless integration between ClickUp tasks and AI applications through the Model Context Protocol (MCP). This server allows AI agents to interact with your ClickUp workspace using natural language commands for task management, document handling, and workspace organization.
The quickest way to get started is using the hosted version on Smithery:
On Smithery, you can preview available tools and copy commands to run with your specific client app.
Add this configuration to your client's MCP settings JSON file:
{
"mcpServers": {
"ClickUp": {
"command": "npx",
"args": [
"-y",
"@taazkareem/clickup-mcp-server@latest"
],
"env": {
"CLICKUP_API_KEY": "your-api-key",
"CLICKUP_TEAM_ID": "your-team-id",
"DOCUMENT_SUPPORT": "true"
}
}
}
}
Alternatively, run this command in your terminal:
npx -y @taazkareem/clickup-mcp-server@latest --env CLICKUP_API_KEY=your-api-key --env CLICKUP_TEAM_ID=your-team-id
Note: Set DOCUMENT_SUPPORT
to true
to enable document management features.
Control which tools are available using environment variables:
npx -y @taazkareem/clickup-mcp-server@latest \
--env CLICKUP_API_KEY=your-api-key \
--env CLICKUP_TEAM_ID=your-team-id \
--env ENABLED_TOOLS=create_task,get_task,update_task,get_workspace_hierarchy
npx -y @taazkareem/clickup-mcp-server@latest \
--env CLICKUP_API_KEY=your-api-key \
--env CLICKUP_TEAM_ID=your-team-id \
--env DISABLED_TOOLS=delete_task,delete_bulk_tasks
The server supports both modern HTTP Streamable transport and legacy SSE transport:
{
"mcpServers": {
"ClickUp": {
"command": "npx",
"args": [
"-y",
"@taazkareem/clickup-mcp-server@latest"
],
"env": {
"CLICKUP_API_KEY": "your-api-key",
"CLICKUP_TEAM_ID": "your-team-id",
"ENABLE_SSE": "true",
"PORT": "3231"
}
}
}
}
Available endpoints:
http://127.0.0.1:3231/mcp
(Streamable HTTP)http://127.0.0.1:3231/sse
(SSE)Command line usage:
npx -y @taazkareem/clickup-mcp-server@latest \
--env CLICKUP_API_KEY=your-api-key \
--env CLICKUP_TEAM_ID=your-team-id \
--env ENABLE_SSE=true \
--env PORT=3231
Create, update, and manage tasks with natural language:
{
"name": "Prepare quarterly report",
"description": "Analyze Q3 data and prepare summary for leadership",
"listName": "Marketing Projects",
"due_date": "next Friday at 5pm",
"priority": "high"
}
Create and manage tags across your workspace:
{
"tagName": "urgent",
"spaceName": "Marketing",
"foreground": "white",
"background": "red"
}
View your entire workspace structure:
{
// No parameters needed
}
Track time spent on tasks:
{
"taskName": "Website redesign",
"listName": "Development"
}
Create and manage documents (requires DOCUMENT_SUPPORT=true
):
{
"workspaceId": "123456",
"name": "Project Documentation",
"parentType": "space",
"parentId": "789012",
"content": "# Project Overview\n\nThis document outlines..."
}
The server provides 36 tools across various categories:
The server provides clear error messages for common issues. You can control log verbosity with the LOG_LEVEL
environment variable:
npx -y @taazkareem/clickup-mcp-server@latest --env LOG_LEVEL=info
Valid levels are trace
, debug
, info
, warn
, and error
(default).
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "ClickUp" '{"command":"npx","args":["-y","@taazkareem/clickup-mcp-server@latest"],"env":{"CLICKUP_API_KEY":"your-api-key","CLICKUP_TEAM_ID":"your-team-id","DOCUMENT_SUPPORT":"true"}}'
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": {
"command": "npx",
"args": [
"-y",
"@taazkareem/clickup-mcp-server@latest"
],
"env": {
"CLICKUP_API_KEY": "your-api-key",
"CLICKUP_TEAM_ID": "your-team-id",
"DOCUMENT_SUPPORT": "true"
}
}
}
}
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": {
"command": "npx",
"args": [
"-y",
"@taazkareem/clickup-mcp-server@latest"
],
"env": {
"CLICKUP_API_KEY": "your-api-key",
"CLICKUP_TEAM_ID": "your-team-id",
"DOCUMENT_SUPPORT": "true"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect