Clickup Cli MCP Server

A CLI for the ClickUp API, optimized for AI agents and human users.

Remote serverstreamable-httpPython

What is the Clickup Cli MCP server?

A CLI for the ClickUp API, optimized for AI agents and human users. That is what the clickup cli mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The tools it exposes

The server publishes 2 tools. What each one is for:

  • Flag — Env var
  • Windows — Download clickup-windows-x86_64.zip from the latest release, extract it, and add

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

What it needs from you

Configuration is passed through the environment: CLICKUP_TOKEN, COMMENT_ID, VIEW_ID, FIELD_ID, TASK_ID, CHAN_ID, CLICKUP_TASK_ID. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Clickup Cli's toolset — Flag, Windows — is a fair guide to whether it matches your workflow. It is maintained by nicholasbester; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Clickup Cli's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
FlagEnv var
WindowsDownload clickup-windows-x86_64.zip from the [latest release](https://github.com/nicholasbester/clickup-cli/releases/latest), extract it, and add clickup-cli.exe (and optionally clkup.exe) to your PATH.

How to install the Clickup Cli MCP server

{
  "mcpServers": {
    "clickup-cli": {
      "command": "npx",
      "args": ["-y", "@nick.bester/clickup-cli"],
      "env": {
        "CLICKUP_TOKEN": "your-value",
        "COMMENT_ID": "your-value",
        "VIEW_ID": "your-value",
        "FIELD_ID": "your-value",
        "TASK_ID": "your-value",
        "CHAN_ID": "your-value",
        "CLICKUP_TASK_ID": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
CLICKUP_TOKENCredential the server authenticates with.Yes
COMMENT_IDConfiguration value read at startup.Optional
VIEW_IDConfiguration value read at startup.Optional
FIELD_IDConfiguration value read at startup.Optional
TASK_IDConfiguration value read at startup.Optional
CHAN_IDConfiguration value read at startup.Optional
CLICKUP_TASK_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Clickup Cli to Flag.
  • Use Clickup Cli to Windows.

Frequently asked questions

It connects Clickup Cli to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Flag, Windows) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Clickup Cli directly.