drio
Open app

ClickUp MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

ClickUp MCP Server is an enhanced version of the original ClickUp MCP Server, designed to improve task management and integration with AI assistants through the Model Context Protocol (MCP).

To use the ClickUp MCP Server, clone the repository, install dependencies, configure your ClickUp API key and team ID, and run the server. You can also deploy it on Railway for easier access.

  • Support for task relationships including dependencies, links, and tags. - Comprehensive comment management across tasks and lists. - Task checklists for organizing subtasks. - Modular and maintainable codebase with service-based architecture. - Easy integration with AI assistants.
  1. Managing complex project tasks with dependencies and relationships.
  2. Collaborating on tasks with comments and checklists.
  3. Integrating with AI tools for enhanced productivity.

Add to your AI client

Use these steps to connect ClickUp MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "clickup-mcp-server-v4lheru": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-clickup-mcp-server-v4lheru"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "clickup-mcp-server-v4lheru": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-clickup-mcp-server-v4lheru"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "clickup-mcp-server-v4lheru": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-clickup-mcp-server-v4lheru"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "clickup-mcp-server-v4lheru": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-clickup-mcp-server-v4lheru"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "clickup-mcp-server-v4lheru": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-clickup-mcp-server-v4lheru"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "clickup-mcp-server-v4lheru": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-clickup-mcp-server-v4lheru"
      ]
    }
  }
}

FAQ

Can I deploy ClickUp MCP Server on my own?

Yes! You can deploy it locally or on platforms like Railway.

What programming language is used?

The server is built using TypeScript.

How do I add new features?

You can extend the server by defining new types, implementing service methods, and updating the main server.