Skip to main content
Glama

pre_deploy_check

Evaluate deployment findings against a pre-deploy gate profile to determine if release criteria are met.

Instructions

Evaluate findings against a pre-deploy gate profile.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
profileNostandard
findings_jsonNo[]

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says 'evaluate findings,' which suggests a read-only check, but it does not state whether the tool mutates state, what the gate outcome means, or what an agent should expect on pass/fail.

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

Conciseness4/5

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

The description is a single front-loaded sentence with no wasted words. It is concise, though slightly under-specified, which is a separate completeness issue rather than a conciseness flaw.

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

Completeness2/5

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

Given no annotations, 0% schema description coverage, and an output schema that may explain return shape, the description still lacks necessary operational context. An agent cannot tell what a gate profile is, what findings_json must look like, or when in the deployment workflow this tool should be invoked.

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?

Input schema coverage is 0%, and the description adds only minimal context: 'findings' loosely maps to findings_json and 'pre-deploy gate profile' loosely maps to profile. It does not explain valid profile values, the expected JSON shape of findings, or how effects differ across profiles.

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: it says the tool evaluates findings against a pre-deploy gate profile, which clearly identifies the core action. It does not reference sibling tools or distinguish itself from related deployment/audit tools, so it does not earn a 5.

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

Usage Guidelines2/5

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

The description gives no guidance on when to run this check versus alternatives like audit_model_and_report, plan_change, or deploy_to_workspace. The name 'pre_deploy_check' implies it belongs before deployment, but no prerequisites, exclusions, or alternative conditions are stated.

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