Skip to main content
Glama

Install Template

install_template

Install a catalog template as a new release. Provide name (release name), template, optional version (defaults to latest), the values YAML (from get_template), and gvc unless the template creates its own. Validate first where available: preview_template (full profile; same inputs) dry-runs the render and catches values mistakes before anything is created. Deployment is asynchronous — verify with get_installed_template afterwards. Recommended reading before first use: get_cpln_skill("template-catalog") — the runbook for this tool family (read once per session).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
gvcNoTarget GVC. Required unless the template creates its own GVC (get_template shows which). If the user named one for the template, use it; if not, list available GVCs with list_resources (kind="gvc") and let them choose.
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.
nameYesRelease name — the unique, immutable identifier for this installed instance within the org.
valuesYesThe values.yaml content (YAML mapping) that configures the install. Start from get_template’s example values.
versionNoTemplate version (e.g. "3.0.1"). Omit to use the latest. See get_template for available versions.
templateYesCatalog template to use — select one of the available templates (full details via browse_templates/get_template).

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.4/5.0
Behavior4/5

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

Annotations only signal readOnlyHint=false and destructiveHint=false. The description adds valuable behavioral context beyond this: deployment is asynchronous, so results must be verified with get_installed_template afterwards. It also implies that resources are created ('before anything is created') and that values mistakes can be caught early. This is meaningful added transparency, though it stops short of describing edge cases like name collisions or install-vs-upgrade behavior.

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 compact at about five sentences, with the purpose and required inputs front-loaded. Each subsequent sentence adds value: validation step, async behavior, and a recommendation to read the runbook. There is no redundancy or filler, making it an efficient and well-structured definition.

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

Completeness4/5

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

For a tool with 6 parameters and a mutating asynchronous operation, the description covers the essential workflow: required inputs, validation via preview_template, post-deployment verification, and reading the runbook. An output schema exists, so return values need not be described. Minor gaps remain around upgrade-vs-install conflict behavior, but overall the tool is adequately contextualized for an agent.

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

Parameters3/5

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

Schema description coverage is 100%, with detailed explanations for every parameter already in the schema. The description does restate key relationships (values from get_template, version defaults to latest, gvc conditional) but adds little new semantic information beyond what the schema provides. A baseline 3 is appropriate when the schema fully carries parameter documentation.

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 states a specific verb and resource: "Install a catalog template as a new release." This clearly distinguishes it from siblings like get_template, uninstall_template, and upgrade_template. The outcome (a new installed release) is explicit, so an agent can select it without opening the schema.

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?

Explicit guidance is given for when to use alternatives: preview_template for validating before creation, and get_installed_template for verifying after the asynchronous deployment. It also explains the conditional need for gvc ('unless the template creates its own') and recommends reading the runbook via get_cpln_skill before first use. This fully routes the agent through the correct workflow.

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).