Skip to content
VS Code

ClickUp MCP Pro for VS Code

io.github.helbertparanhos/clickup-mcp-pro

The most complete ClickUp MCP server — 161 tools + clickup_raw for the full v2/v3 API.

client:VS Code transport:stdio runtime:npm

Install ClickUp MCP Pro in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "clickup-api-token",
      "description": "CLICKUP_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clickup-team-id",
      "description": "CLICKUP_TEAM_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clickup-readonly",
      "description": "CLICKUP_READONLY",
      "password": true
    }
  ],
  "servers": {
    "clickup-mcp-pro": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "clickup-mcp-pro"
      ],
      "env": {
        "CLICKUP_API_TOKEN": "${input:clickup-api-token}",
        "CLICKUP_TEAM_ID": "${input:clickup-team-id}",
        "CLICKUP_READONLY": "${input:clickup-readonly}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

ClickUp MCP Pro in other clients