drio
Open app

clickup-operator MCP server

Source

Model Context Protocol (MCP) server implementation for ClickUp integration

Catalog onlyCatalog onlySTDIO

Overview

The ClickUp Operator MCP Server is an implementation of the Model Context Protocol (MCP) designed for integration with ClickUp, providing tools for note storage and summarization.

To use the server, clone the repository from GitHub and run the server using the provided command: bash uv --directory C:\Users\noahv\Documents\GitHub\clickup-operator run clickup-operator

  • Implements a note storage system with a custom note:// URI scheme. - Provides a prompt for summarizing all stored notes with configurable detail levels. - A tool to add notes to the server with a simple interface.
  1. Storing and managing notes related to project tasks.
  2. Quickly summarizing important notes for meetings or reports.
  3. Integrating with ClickUp for enhanced workflow automation.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-clickup-noahvanhart": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-clickup-noahvanhart"
      ]
    }
  }
}
clickup-operator MCP server — MCP Registry