cancel_org_invitation
ChatGPTCancel a pending invitation.
deploy
ChatGPTTrigger a new deployment of an existing server. Both the deployment's source config (repo, runtime, build/start commands, env vars) and the default branch live on the server itself — this tool only kicks off a new build. Use list_servers or get_server to find the target serverId. Pass a branch to deploy something other than the server's production branch.
get_deployment
ChatGPTGet full details for one deployment: core fields (id, status, serverId, domain, port, timestamps, error, mcpUrl), git commit info, and source config (repo, branch, rootDir, runtime, buildCommand, startCommand). Use get_deployment_build_logs / get_deployment_runtime_logs for log streams.
get_deployment_build_logs
ChatGPTGet build logs for a deployment. Defaults to the last 100 lines — pass lines (1-5000) to change the tail size, or pass offset (byte-offset pagination) to resume streaming an in-flight build from a previous call's nextOffset. lines takes precedence over offset if both are set.
get_deployment_runtime_logs
ChatGPTGet runtime logs for a deployment. Defaults to the most recent 100 lines — pass lines (1-5000) to change the tail size. Pass query to filter the fetched tail to lines containing a substring (case-insensitive) — useful for finding specific errors or messages without pulling huge tails.
get_observability_overview
ChatGPTObservability overview for one server: totalEvents, successEvents, errorEvents, avgDuration (ms), avgRequestSize, avgResponseSize aggregated over a time window. Use list_server_events for the underlying request stream, and get_server_tool_breakdown / get_server_client_breakdown for per-tool and per-client splits.
get_organization_stats
ChatGPTGet summary stats for an organization: server count, deployment count, gateway tool-call count, and distinct session count. Does not return the server roster — use list_servers for that.
get_server
ChatGPTGet core details for one MCP server (id, slug, name, description, tags, status, latestDeploymentStatus, activeDeploymentId, repoFullName, productionBranch, deploymentCount). Does not include the full deployment history, domains, or internal provider config — use list_deployments (pass serverId) and get_server_domain for those.
get_server_client_breakdown
ChatGPTBreakdown of which MCP clients are connecting to a server (clientName, clientVersion, protocol, sessionCount, requestCount) plus a timeline of request counts per client per bucket. Pair with get_server_tool_breakdown to see which tools those clients are calling.
get_server_domain
ChatGPTGet the main custom domain and verification status for a server (domain, verified, status, sslStatus, cnameTarget, verificationErrors). Note: the main server domain lives on the server — preview domains live on individual deployments.
get_server_tool_breakdown
ChatGPTBreakdown of tool/resource/prompt calls on a server over the last 24 hours, bucketed hourly. Returns aggregated per-method totals with per-bucket counts. Use get_server_client_breakdown for the who, and list_server_events for the raw call stream.
invite_org_member
ChatGPTSend an invitation to join an organization with a specified role.
list_deployments
ChatGPTList deployments as compact rows (id, name, status, serverId, gitBranch, createdAt). Paginated server-side; pass serverId to scope to a single server's deployments and optional status to filter. This is the source of truth for deploymentId; filter by status (e.g. 'failed') to narrow down when the user describes a deployment rather than naming it. Use get_deployment for details, get_deployment_build_logs/get_deployment_runtime_logs for logs.
list_org_invitations
ChatGPTList pending invitations for an organization.
list_organizations
ChatGPTList organizations the authenticated user can access. Returns minimal rows (id, name, slug, role). This is the source of truth for organizationId, which every other tool in this server requires. Use get_organization_stats for counts and list_organization_members for the member roster.
list_server_events
ChatGPTGateway request log for a server, cursor-paginated (newest first). Each row includes method, path, status code, duration, client name/version, country, and error details when present. Uses cursor pagination, not offset: call again with cursorTime set to the previous response's nextCursor to page back further in time.
list_servers
ChatGPTList MCP servers in an organization as compact rows (id, slug, name, status, tags). Paginated and filterable (tag, status, text search). This is the source of truth for serverId — use the search parameter to resolve a server reference (name, slug, or description) to its ID. Use get_server for full details including repo, get_server_domain for the main domain, and list_deployments (pass serverId) for history.
redeploy
ChatGPTTrigger a new deployment of an existing Cloud server by serverId. Use this only when the user identified a specific existing Cloud server. For deploying a GitHub repo or the current project, use deploy instead.
stop_deployment
ChatGPTStop a running deployment. Takes the deployment offline; to bring the server back up, call the deploy tool to trigger a new deployment.
update_server
ChatGPTUpdate an existing server's deploy configuration (start command, build command, port, Dockerfile path, root dir) and/or metadata (name, description, tags, production branch). Deploy-config fields are merged into the server's existing config — only the fields you pass are changed, the rest are preserved. Config changes do not take effect until the next deployment, so pass redeploy: true to trigger one immediately (or call the redeploy tool afterwards). Common use: fix a broken start command (e.g. set startCommand to a uvicorn ASGI command for a Python MCP server) and redeploy.
cancel_org_invitation
Claudedeploy
Claudeget_deployment
Claudeget_deployment_build_logs
Claudeget_deployment_runtime_logs
Claudeget_observability_overview
Claudeget_organization_stats
Claudeget_server
Claudeget_server_client_breakdown
Claudeget_server_domain
Claudeget_server_tool_breakdown
Claudeinvite_org_member
Claudelist_deployments
Claudelist_org_invitations
Claudelist_organizations
Claudelist_server_events
Claudelist_servers
Claudestop_deployment
Claude