Skip to main content
Glama

Delimit Release Impl

_delimit_release_impl

Dispatches release operations—plan, validate, status, rollback, history, sync—for multi-service environment versions. Choose the action by name in a single call to manage whole-environment releases.

Instructions

Unified release-management entry point — dispatches to one of six actions.

When to use: as the single MCP-registered release surface (delimit_release) when the caller wants to pick the release operation by name in one call rather than choosing a specific delimit_release_* alias. Release-tier means whole-environment, multi-service versions (the rollup across apps), as opposed to the deploy-tier (per-app SHA) covered by the delimit_deploy_* tools. When NOT to use: from internal code paths — prefer the specific alias (delimit_release_plan, delimit_release_validate, delimit_release_status, delimit_release_rollback, delimit_release_history, delimit_release_sync) for clarity and so each action's docstring and license gate show up at the right call site. For per-app rollout state use delimit_deploy_status; to ship code use delimit_deploy_publish; for OpenAPI spec linting use delimit_lint.

Sibling contrast: each delimit_release_ wrapper is a thin alias over this implementation; they exist so the action's docstring lives at the right name. This is the dispatch core. delimit_release_validate routes through a shared _release_validate chain, and the public delimit_release_sync exposes its sub-action as a param named action, which this function receives as sync_action.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of releases to return. Default 10. Used only by "history".
actionNoWhich release operation to perform. One of "plan", "validate", "status", "rollback", "history", "sync". Default "status". Other values return a deterministic error.status
versionNoRelease version (auto-detected from git tags if empty). Used by "plan", "validate", and "rollback" (as the expected current version to roll back FROM).
servicesNoOptional list of service names to scope the plan; None = all services in the repo manifest. Used only by "plan".
repositoryNoRepository path. Default ".". Used only by "plan"..
to_versionNoPrior release version to roll back to. Required for "rollback"; ignored otherwise.
environmentNoTarget environment, "staging" or "production". Default "production".production
sync_actionNoSub-action for "sync" — "audit" (default) or "config". Ignored by other actions.audit

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed8 schema fields changedv4.13.1
    • changedInput schema / properties / action / description
      Previous value: -"Which release operation to perform."New value: +"Which release operation to perform. One of \"plan\",\n\"validate\", \"status\", \"rollback\", \"history\", \"sync\".\nDefault \"status\". Other values return a deterministic error."
    • changedInput schema / properties / environment / description
      Previous value: -"Target environment staging/production."New value: +"Target environment, \"staging\" or \"production\".\nDefault \"production\"."
    • changedInput schema / properties / limit / description
      Previous value: -"Number of releases to return (for action='history')."New value: +"Maximum number of releases to return. Default 10. Used\nonly by \"history\"."
    • changedInput schema / properties / repository / description
      Previous value: -"Repository path (for action='plan')."New value: +"Repository path. Default \".\". Used only by \"plan\"."
    • changedInput schema / properties / services / description
      Previous value: -"Optional service list (for action='plan')."New value: +"Optional list of service names to scope the plan;\nNone = all services in the repo manifest. Used only by \"plan\"."
    • changedInput schema / properties / sync_action / description
      Previous value: -"Sub-action audit/config (for action='sync')."New value: +"Sub-action for \"sync\" — \"audit\" (default) or\n\"config\". Ignored by other actions."
    • changedInput schema / properties / to_version / description
      Previous value: -"Version to rollback to (for action='rollback')."New value: +"Prior release version to roll back to. Required for\n\"rollback\"; ignored otherwise."
    • changedInput schema / properties / version / description
      Previous value: -"Release version (auto-detected if empty, for plan/validate/rollback)."New value: +"Release version (auto-detected from git tags if empty).\nUsed by \"plan\", \"validate\", and \"rollback\" (as the expected\ncurrent version to roll back FROM)."
  2. Addedv4.5.5

TDQS

A4.4/5.0
Behavior4/5

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

With no readOnly or destructive annotations present, the description carries the behavioral burden. It is transparent about being a dispatch core with six possible actions, thin alias wrappers, and a sync_action mapping. The main gap is that potentially mutating actions like rollback and sync are implied by name rather than explicitly flagged as state-changing operations.

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 front-loaded with its core purpose and organized into labeled sections: purpose, when to use, when not to use, and sibling contrast. The long alias lists earn their place because they directly route the agent to the correct tool among hundreds of siblings.

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 complex multi-action dispatch tool with 8 parameters and many sibling tools, the description is nearly complete: it defines dispatch scope, differentiates tiers, names alternatives, and relies on the 100%-covered schema for parameter detail. It loses one point for not explicitly disclosing side-effect or safety characteristics of the rollback/sync actions, especially since annotations provide no mutation hints.

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%, and the input schema already gives each of the 8 parameters a thorough description, defaults, and action-scope notes. The description adds only the useful but nonessential cross-reference that the public sync surface names the sub-action 'action' while this implementation receives it as 'sync_action', so it stays at the high-coverage baseline of 3.

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 leads with a specific verb-plus-resource statement: a unified release-management entry point that dispatches to one of six named actions. It also differentiates itself from the delimit_release_* alias wrappers and from deploy-tier tools, so an agent can distinguish this tool from its many siblings without opening other definitions.

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?

There are explicit 'When to use' and 'When NOT to use' sections. It tells the agent to call this single MCP-registered release surface when selecting an action by name, to prefer specific delimit_release_* aliases from internal code paths, and names the correct alternative tools for deploy status, publish, and linting.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/delimit-ai/delimit-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server