ClickUp public marketplace plugin fails to install — source repo not found

Where does the bug appear (feature/product)?

Cursor IDE

Describe the Bug

Installing the official ClickUp plugin from the Cursor public marketplace fails silently.
The UI may show the plugin as installed/enabled, but the local cache stays empty and the ClickUp MCP server never becomes available.
Root cause from logs: git fetch against the plugin source repository fails with “Repository not found”.

Cursor plugin load error clickup@488062c409591e7c7d7c1dabdc5276af96d61e85: Command failed: git -c credential.interactive=false -c core.fsmonitor=false fetch --depth 1 origin 488062c409591e7c7d7c1dabdc5276af96d61e85 remote: Repository not found. fatal: repository ‘https://github.com/clickup/clickup-plugin/’ not found

Cache path created but empty:
~/.cursor/plugins/cache/cursor-public/clickup/

Steps to Reproduce

  1. Open Cursor Settings → Plugins / Marketplace
  2. Install ClickUp from the public marketplace (cursor-public)
  3. Restart Cursor / open a new Agent chat
  4. Observe: ClickUp MCP tools are not available
  5. Check ~/.cursor/plugins/cache/cursor-public/clickup/ → empty
  6. Check Output / Cursor Plugins logs → repo not found for https://github.com/clickup/clickup-plugin/

Expected Behavior

Plugin files are cloned into the cache and ClickUp MCP tools become usable.

Actual Behavior

Install appears to succeed in UI, but download fails because https://github.com/clickup/clickup-plugin/ returns 404 / not found. Cache remains empty.

Operating System

MacOS

Version Information

Operating System

macOS 26.3.1 (darwin 25.3.0), arm64

Cursor Version

3.11.25 (fc2563ec93d793fc275eef734405a4fdf8b47b20)

Additional Information

  • Marketplace: cursor-public / marketplaceId cursor-public-34
  • Plugin id: clickup
  • gitRef: 488062c409591e7c7d7c1dabdc5276af96d61e85
  • Log file: Cursor Plugins.log under Application Support/Cursor/logs
  • Other public plugins (Slack, Figma, Notion, Sentry) appear to install normally; only ClickUp fails this way

Does this stop you from using Cursor

No - Cursor works, but with this issue

Hey, thanks for the detailed report. Everything’s super clear.

This isn’t a bug in Cursor’s install engine. The issue is with the ClickUp listing in the public marketplace. ClickUp removed their source repo at github.com/clickup/clickup-plugin and switched to a hosted MCP server. Because of that, git fetch returns 404, the cache stays empty, and the UI still shows the plugin as installed. That silent fail is a separate UX issue and it’s on our radar too. We know about this on our side, but there’s no ETA yet for fixing the listing.

Workaround: connect ClickUp MCP manually and skip the marketplace. Add this to mcp.json in Settings → MCP → New MCP Server:

{
  "mcpServers": {
    "clickup": {
      "url": "https://mcp.clickup.com/mcp"
    }
  }
}

It’s a streamable HTTP endpoint. On first use, ClickUp will ask you to sign in via OAuth. After that, the ClickUp tools will show up in the Agent.

Also, it’s best not to touch the broken marketplace tile. It won’t load until the listing is updated. Let me know if the manual MCP setup still doesn’t work.