Skip to main content
Glama

create_deployment

Request a new isolated engine deployment for your org on a selected cloud provider and region. Provisioning is asynchronous; poll get_deployment until active to start using it.

Instructions

Request a new isolated engine deployment for the active organization on the chosen provider and region. Returns immediately with status requested — provisioning is asynchronous, so poll get_deployment until status is active; API calls then route to the isolated deployment automatically. Requires an owner API key. Only one active or in-progress deployment is allowed per org (deployment_exists otherwise — call delete_deployment first), and unknown provider/region pairs fail validation; list_deployment_regions shows the valid combinations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
configNoOptional provider-specific configuration.
regionNoRegion id from list_deployment_regions; defaults to algenta-shared.
providerNoCloud provider: algenta_shared (default), aws, azure, or gcp.
billing_markup_pctNoBilling markup percentage applied to this deployment, 0-200.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changedv0.1.3
    • addedInput schema / properties / billing_markup_pct / description
      Added value: +"Billing markup percentage applied to this deployment, 0-200."
    • addedInput schema / properties / config / description
      Added value: +"Optional provider-specific configuration."
    • addedInput schema / properties / provider / description
      Added value: +"Cloud provider: algenta_shared (default), aws, azure, or gcp."
    • addedInput schema / properties / region / description
      Added value: +"Region id from list_deployment_regions; defaults to algenta-shared."
  2. First observedv0.1.0

TDQS

A4.7/5.0
Behavior5/5

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

Discloses key behavioral traits beyond annotations: asynchronous provisioning with immediate 'requested' status, automatic routing of API calls after activation, per-org uniqueness constraint, and validation failure modes. Annotations (readOnlyHint false, idempotentHint false) are consistent with a mutating, non-idempotent creation operation, and the description adds substantial operational context.

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 dense but every clause adds value: action, asynchronous behavior, polling instruction, routing effect, auth requirement, uniqueness constraint, and validation guidance. There is no filler or redundant restatement of the tool name or schema.

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?

This is a complex, asynchronous, mutating deployment tool with no output schema and no required parameters. The description covers the full calling lifecycle: prerequisites (owner API key, valid region/provider), immediate result (requested status), follow-up (poll get_deployment), and failure handling (deployment_exists, invalid provider/region). Nothing essential is missing for an agent to invoke it correctly.

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%, so the schema already documents all four parameters. The description adds some context by connecting region/provider to list_deployment_regions and mentioning 'active organization,' but does not explain the nested config object structure or otherwise materially compensate beyond the schema. Baseline 3 is appropriate.

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?

States a specific verb and resource: 'Request a new isolated engine deployment for the active organization on the chosen provider and region.' It clearly differentiates from sibling tools by explicitly referencing get_deployment, delete_deployment, and list_deployment_regions, so an agent can distinguish it from related deployment operations.

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?

Provides explicit when-to-use guidance: only one active/in-progress deployment per org, requires owner API key, unknown provider/region pairs fail validation, and deployment_exists means delete_deployment first. It also tells the agent to poll get_deployment until status is active, making the usage workflow unambiguous.

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

Deploy Server

Other Tools