Skip to main content
Glama
lzaafe-alt

lolosqltools

by lzaafe-alt

generate_production_request

Creates a formatted production deployment request email following BSG's mandatory format. Automatically flags schedule conflicts, schema problems, and policy compliance issues.

Instructions

Generates a formatted production deployment request email following BSG's mandatory format. Includes automatic warnings for schedule issues, schema problems, and BSG policy compliance.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
db_originNoSource database nameintegraDBData
solicitanteYesName of the person making the request
time_windowNoTime window for deployment e.g. '18:00 - 20:00 hrs' (optional)
validationsYesList of validations performed in DEV environment
db_destinationNoTarget database nameintegraDB
requirement_idYesRequirement identifier (e.g. 'OP-1234')
scheduled_dateNoScheduled deployment date in YYYY-MM-DD format (optional)
script_filenameNoAttached script filename (optional)
change_descriptionYesBrief and direct description of the DDL change
requirement_descriptionYesBrief description of the requirement

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden and does disclose real behavior beyond the schema: automatic warnings for schedule issues, schema problems, and BSG policy compliance. However, it omits key behavioral facts an agent would want — whether the email is merely rendered or actually dispatched, any permission requirements, and whether missing optional fields (scheduled_date, time_window) trigger those warnings.

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?

Two compact sentences with the core action front-loaded and the warning behavior as supporting detail. No filler or redundancy, though the second sentence crams three distinct warning categories into one clause.

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?

For a 10-parameter, 5-required generation tool with no annotations and no output schema, the description covers the artifact and one behavioral trait but leaves the return format (rendered text vs. file), and the interaction between required fields and warning generation, unexplained. Adequate but with visible gaps.

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 10 parameters including defaults and formats. The description adds no parameter-level guidance (e.g., how validations interact with the policy warnings), so the baseline of 3 applies.

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 states a specific verb and resource: 'Generates a formatted production deployment request email following BSG's mandatory format.' This clearly distinguishes it from a generic 'generate_template' or the sibling 'generate_access_request', which produces a different artifact. It stops short of a 5 only because the sibling differentiation is implicit rather than named.

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?

Usage is implied by the artifact produced (production deployment requests) but the description never states when to use this versus generate_access_request or generate_template, nor any prerequisites. There are no explicit exclusions or alternative-selection conditions.

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