Skip to main content
Glama

approve_preflight

Approve a locked preflight with a confirmation token to advance your workflow. This validates the preflight without starting provider work.

Instructions

Approve a locked preflight. This does not begin provider work.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
response_detailNo
confirmation_tokenYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.1

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It usefully discloses a key trait: approval does not begin provider work. However, it does not explain side effects, reversibility, permissions, or idempotency of approving a locked preflight.

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?

Two short sentences, no filler, with the core action and a key non-effect front-loaded. Every word earns its place.

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

Completeness3/5

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

The tool is simple and has an output schema, so return values need not be documented. Still, the description leaves unclear what 'locked preflight' means, how the confirmation token is obtained, and what happens after approval, which an agent needs to call it correctly.

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

Parameters2/5

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

Schema description coverage is 0%, and the description adds no parameter-level guidance. Property names like confirmation_token and response_detail are suggestive, but the description does not explain where confirmation_token comes from or what response_detail controls.

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

Purpose4/5

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

The description uses a specific verb and resource ('Approve a locked preflight') and clarifies scope by stating it does not begin provider work. It distinguishes the tool's intent from run/confirm siblings, though it does not name an alternative explicitly.

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

Usage Guidelines3/5

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

The context of use is implied: use when a preflight is locked and needs approval. There is no explicit statement of when to prefer this over confirm_and_run or approve_library_tool, nor any exclusion criteria.

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