drio
Open app

mcp-clickup

Source

ClickUp MCP Server

Catalog onlyCatalog onlySTDIO

Overview

mcp-clickup is a server designed to integrate with ClickUp, a popular project management tool, allowing users to enhance their project management capabilities.

To use mcp-clickup, clone the repository from GitHub, set up the server environment, and configure it to connect with your ClickUp account.

  • Seamless integration with ClickUp for enhanced project management. - Customizable server settings to fit user needs. - Support for various project management workflows.
  1. Automating task management in ClickUp.
  2. Integrating ClickUp with other tools for improved productivity.
  3. Customizing project workflows to better suit team needs.

Add to your AI client

Use these steps to connect mcp-clickup 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": {
    "mcp-clickup-johaneriksson-io": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-clickup-johaneriksson-io"
      ]
    }
  }
}

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": {
    "mcp-clickup-johaneriksson-io": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-clickup-johaneriksson-io"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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