Skip to main content
Glama

Create a Control Plane GVC

create_gvc

Create a new GVC (Global Virtual Cloud) — the deployment scope workloads live in. Configure placement in this call through locations or locationQuery: a GVC without placement cannot run workloads (locationOptions is DNS geo-routing tuning for placed locations, not placement). If the user did not specify placement, ASK first (list_resources kind="location" shows the options) — never guess a region and never create an empty GVC. Custom domains are configured with the Domain resource (create_domain), not on the GVC.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
envNoEnvironment variables defined on the GVC. Workloads with inheritEnv=true redeploy when these values change.
orgYesOrganization slug (lowercase kebab-case). NEVER guess — if the user has not named one, ask. On org-not-found, stop and ask; do not retry variants.
kedaNoKEDA autoscaling configuration for the GVC.
nameYesResource name (lowercase kebab-case, starts with a letter, 2-64 chars). Names are IMMUTABLE — renaming = delete + recreate (loses URL, DNS, policy links).
tagsNoOptional tags (key-value pairs such as env=prod). Use them like Kubernetes labels for governance and search.
tracingNoDistributed tracing configuration.
locationsNoLocations the GVC deploys to — any location the org has: a built-in cloud region ("aws-eu-central-1"), a BYOK location registered from your own cluster, or a friendly name like "frankfurt" (resolved server-side against the org's own list). REQUIRED unless locationQuery provides placement instead. If the user has not named one, ASK which location(s) to use (list_resources kind="location" shows the options); never pick one silently.
descriptionNoDescription (surfaced in tooling similar to a Kubernetes annotation).
loadBalancerNoGVC load balancer configuration.
sidecarEnvoyNoAdvanced Envoy sidecar filters (maps to spec.sidecar.envoy).
locationQueryNoDynamic placement: a query that selects locations.
locationOptionsNoPer-location DNS geo-routing options (routingTier priority, latency bias/cutoff) for locations already placed via `locations` or `locationQuery`. Routing only — it does NOT place the GVC anywhere.
pullSecretLinksNoSecret links for docker/ecr/gcp secrets so workloads can pull from private registries (e.g., /org/{org}/secret/{secret} or //secret/{secret}).
aliasWorkloadLinkNoLink to a workload in this GVC whose canonical endpoint backs the GVC alias DNS record (e.g. //gvc/{gvc}/workload/{name}). NOTE: the alias is INERT while the target workload is suspended (suspend=true or maxScale=0) — it takes effect only while the workload runs.
endpointNamingFormatNoSubdomain format for the canonical workload endpoint. "default": {workload}-{gvc}.cpln.app; "org": {workload}-{gvc}.{org}.cpln.app; "legacy": legacy scheme. When omitted on create, the platform defaults to "org".

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYesWhether the call succeeded.
dataNoThe full machine-readable result — list rows, the resource object, query results. Read THIS, not just the summary.
summaryYesOne-line summary of the result.
nextStepsNoRecommended follow-up actions for this task, in order.

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations only provide flags (readOnlyHint: false, destructiveHint: false), so the description carries the transparency burden. It reveals that a GVC without placement cannot run workloads, that locationOptions is only geo-routing tuning and not placement, and that server-side resolution of location names occurs. It also warns against guessing regions. It doesn't detail side effects like cost or irreversible changes, but the immutability of names is covered in the schema. Overall, it adds meaningful behavioral context without contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is detailed but every sentence earns its place. It is front-loaded with the core purpose and placement requirement, then covers the domain separation and ask-first guidance. It is concise for the complexity of the tool, using clear, direct language without redundancy. The structure flows logically from purpose to key constraints.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (15 parameters, nested objects, output schema exists), the description covers the most critical aspects: placement is required, what to do if not specified, and what is not handled here (domains). It also references the alternative tool (list_resources) for user choices. The presence of an output schema means return values need not be explained in the description. The description is adequate for an agent to invoke this tool correctly in most scenarios.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds semantic value beyond the schema by clarifying the interaction between `locations`, `locationQuery`, and `locationOptions`, and by explicitly stating that `locationOptions` is not placement. It also gives usage context for the `locations` parameter (e.g., 'never pick one silently'). This helps the agent understand parameter relationships and constraints beyond what individual descriptions provide.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Create') and resource ('GVC') and clearly defines what a GVC is: 'the deployment scope workloads live in.' It also explicitly differentiates from sibling tools by stating that custom domains are configured via create_domain, not on the GVC, and the placement guidance distinguishes it from other create tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit when-to-use and when-not-to-use guidance. It states that placement is configured through `locations` or `locationQuery`, and that `locationOptions` is not placement. It instructs the agent to ASK first if placement is not specified, referencing list_resources kind='location' as the alternative, and explicitly says 'never guess a region and never create an empty GVC.' It also notes that custom domains are handled by create_domain, not this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Every tool targets a distinct resource/action pair (e.g., get_resource vs get_resource_schema, list_deployments vs list_workload_replicas) and descriptions clearly differentiate purposes. No two tools appear to do the same thing.

Naming Consistency5/5

All tools follow a verb_noun snake_case pattern (create_gvc, update_workload, list_resources, query_metrics) with consistent verbs. The few imperative verbs (browse, build, mount) still maintain the same verb-first structure.

Tool Count1/5

With 55 tools, this server far exceeds the typical well-scoped 3-15 tool range. While each tool appears purposeful, the sheer number creates selection overhead and falls into the extreme 50+ category on the rubric.

Completeness4/5

The surface covers nearly the full Control Plane lifecycle: CRUD for GVC, workload, identity, policy, volumeset, and domain, plus observability, templates, image builds, and Terraform. Minor gaps include referenced but missing configure_workload_* tools and no secret creation/deletion (by design).

Resources