Skip to main content
Glama

Validate Deluge

deluge_validate

Validates Deluge scripts to detect syntax errors and runtime-risk patterns, preventing execution failures in automation workflows.

Instructions

Validate Deluge syntax and common runtime-risk patterns.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeYes
strictNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1-beta.0

TDQS

B3.3/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 says what is checked but does not state whether the tool is read-only, what it returns, whether invalid code raises errors or returns diagnostics, or any side effects. 'Validate' implies non-mutating analysis, but the gap in return and failure behavior is meaningful.

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 a single concise sentence that front-loads the action and resource, with no filler or redundant phrasing. Every word earns its place, and the added mention of runtime-risk patterns gives useful scope without bloating the text.

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, no output schema, and zero parameter descriptions, the description is too sparse to fully equip an agent. It clarifies the tool's general purpose but leaves the 'strict' parameter, return shape, failure behavior, and usage tradeoffs against sibling tools undocumented.

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 0% description coverage, and the description adds no explicit parameter guidance. The required 'code' parameter is inferable from 'Validate Deluge syntax,' but the 'strict' boolean is entirely unexplained. The description does not compensate for the schema's lack of parameter documentation.

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 uses a specific verb ('Validate') and a clear resource ('Deluge syntax'), and goes further by mentioning 'common runtime-risk patterns,' which distinguishes it from sibling tools like deluge_fix and deluge_explain. An agent can understand the tool's core function without opening the schema.

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 verb 'Validate' implies the tool should be used when Deluge code needs checking, but the description provides no explicit when-to-use guidance, no exclusions, and no reference to alternatives such as deluge_fix for fixing or deluge_explain for understanding code. Usage is inferable but not explicitly clarified.

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