Skip to main content
Glama
Mnehmos
by Mnehmos

validate_entry

Validate a draft spell or monster entry against the Open5e schema to catch data errors before submission.

Instructions

Validate a draft entry against the Open5e schema for its resource type.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYesDraft entry data to validate
strictNoFail on warnings (default: false)
resource_typeYesType of resource to validate

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/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. It does not say whether validation is local or server-side, whether it mutates anything, what happens on failure, or whether errors are returned as data or thrown; for a tool with zero annotation coverage this is a real gap.

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?

A single tight sentence with no filler, front-loading the action and the target. Nothing to trim.

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?

There is no output schema and no annotations, yet the description never explains what validation returns (an error list, a boolean, a 4xx on failure) or whether the input data is echoed back. For a validation tool whose entire value is its result, that is a significant omission.

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 all three parameters including the resource_type enum and the strict flag are already documented. The description only adds the mild point that resource_type selects the governing schema, which is baseline-level value.

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?

States a specific verb (validate) plus the resource (a draft entry) and the basis of validation (the Open5e schema for its resource type). It is distinguishable from siblings like normalize, diff, and check_slug, though it never explicitly contrasts itself with them.

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 word 'draft' hints at a pre-submission workflow, but there is no explicit when-to-use statement, no named alternative (e.g., normalize or diff), and no guidance on when strict mode should be turned on. An agent must infer the workflow entirely.

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