Skip to main content
Glama

etl_star_historical

Rebuild star-schema dimensions and fact_sales tables from OLTP source data, overwriting existing data to refresh historical analytics.

Instructions

Rebuild star-schema dims and fact_sales from OLTP (overwrite).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
as_jobNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/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 behavioral burden. It does disclose the key destructive trait 'overwrite', which is essential safety information for an agent. However, it omits consequences such as whether tables are dropped/recreated, whether the operation is transactional, and what happens to existing dependent objects.

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 efficient sentence with no filler and the core action front-loaded. It is concise, though the brevity leaves out details that are penalized in other dimensions.

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?

For a destructive ETL tool with no annotations and no output schema, the description is too thin. It leaves the as_job parameter unexplained and does not state expected completion signals, side effects, or the relationship to etl_star_cdc, making confident invocation harder than necessary.

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?

The schema has one boolean parameter 'as_job' with 0% description coverage, and the description does not explain what it controls. The agent cannot know whether setting as_job to false changes execution mode, output, or behavior, so the description fails to compensate for the schema's silence.

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 ('Rebuild') with a clear resource ('star-schema dims and fact_sales') and source ('from OLTP'), and flags 'overwrite' to signal a full replacement. It does not explicitly differentiate from sibling etl_star_cdc, though the word 'historical' and the rebuild/overwrite language weakly distinguish it as a full load.

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?

No explicit guidance is given about when to use this tool instead of etl_star_cdc, generate_historical_oltp, or other siblings. An agent must infer from the name and the words 'Rebuild'/'overwrite' that this is a full refresh, but there is no direct statement of intended use or exclusions.

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