Public API

Official MCP Server Schema Incompatibility with AntiGravity IDE (Gemini)
Subject: Bug Report: Official MCP Server Schema Incompatibility with AntiGravity IDE (Gemini) Hi ClickUp Team, I'm writing to report a bug with your official MCP server that prevents it from functioning with AntiGravity IDE, which is listed as a supported MCP client in your documentation. --- Issue Summary When connecting to https://mcp.clickup.com/mcp via AntiGravity IDE, the connection fails immediately with HTTP 400 Bad Request due to an invalid tool schema. Error received: GenerateContentRequest.tools[26].function_declarations[0].parameters.properties[max_depth].enum: only allowed for STRING type GenerateContentRequest.tools[26].function_declarations[0].parameters.properties[max_depth].enum[0]: cannot be empty GenerateContentRequest.tools[26].function_declarations[0].parameters.properties[max_depth].enum[1]: cannot be empty GenerateContentRequest.tools[26].function_declarations[0].parameters.properties[max_depth].enum[2]: cannot be empty Root Cause The max_depth parameter in one of your tool definitions (tools[26]) declares an enum on an INTEGER type field. The Gemini API — which powers AntiGravity IDE — only allows enum on STRING types. This is a schema incompatibility that causes a hard failure before any tool can be invoked. Steps to Reproduce Open AntiGravity IDE Add the following MCP server config: ```json { "mcpServers": { "clickup": { "serverUrl": " https://mcp.clickup.com/mcp " } } } ``` Attempt to initialize the MCP connection Observe HTTP 400 error Expected Behavior The MCP server should load successfully and tools should be available in AntiGravity IDE, as per your documentation which explicitly lists AntiGravity as a supported client. Suggested Fix Convert the max_depth parameter (and any other integer enum fields) to STRING type with a runtime conversion on your server side, or remove the enum constraint and validate the value programmatically instead. Environment MCP Client: AntiGravity IDE MCP Server: https://mcp.clickup.com/mcp (official, first-party) Underlying model: Gemini (Google) Since AntiGravity is listed as a supported client in your documentation ( https://developer.clickup.com/docs/connect-an-ai-assistant-to-clickups-mcp-server ), I'd appreciate a prompt resolution. Thank you,
2
·
API Settings
Official ClickUp CLI (deterministic, agent-friendly)
Ship an official ClickUp CLI as a deterministic alternative to MCP for agent workflows Problem We are building AI-driven workflows where agents run locally or in CI and need a tool surface that is: deterministic and cheap at runtime self-describing (so agents do not guess capabilities) stable across time (versioned contracts) MCP introduces overhead and token cost due to tool discovery and repeated schema/context exchange. We want a CLI-first interface that is always up to date and can be invoked by agents and automation systems. Request Please ship an official ClickUp CLI that wraps core ClickUp APIs and Automation Webhooks, with the following requirements: Help-first, machine-readable contracts clickup --help and clickup <cmd> --help must be complete and structured include input flags, examples, output schemas, and exit codes JSON by default All commands output strict JSON by default (--human optional) Stable schemas with versioning Stable exit codes 0 success 2 needs_input/validation error 3 blocked/permission/auth/rate limit 4 failed/unexpected Authentication OAuth device flow (ideal), plus optional support for personal tokens for power users Clear scoping to a workspace Core commands (v1) tasks get|search|create|update comments create|list lists get|search webhooks create|test (or automation webhook helpers) docs get|search (if feasible) Safety controls --dry-run to show mutations without applying explicit confirmation flag for destructive operations Auto-update / version pinning ability to force update before run (agent-friendly) ability to pin versions for CI reproducibility Why this matters This enables a “ClickUp as coordination layer” architecture where: ClickUp is the UI + state machine external agents/CLIs do deterministic work in codebases updates are written back to ClickUp reliably This is lower cost and higher control than MCP-style tool calling for many teams. Related Automation webhooks already exist and work well; a CLI would complement them as the execution surface.
0
Load More