Skip to main content
Glama
Desmond-Labs

image-metadata-embed-and-report

by Desmond-Labs

validate_metadata_schema

Validate metadata against ORBIT schemas (lifestyle, product, orbit) without embedding. Ensure compliance and catch errors early.

Instructions

Validate metadata against ORBIT schemas without embedding (supports lifestyle, product, and orbit schemas)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
metadataYesMetadata object to validate against schema requirements
schema_typeNoSchema type for validation (auto-detected if not specified)
strict_modeNoEnable strict validation mode (default: false)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description must carry the full behavioral burden; it discloses the important non-mutating trait ('without embedding') and the supported schema families. However, it says nothing about required permissions, whether validation has side effects, or how failures surface, so it covers only part of what an agent needs.

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, tightly worded sentence with the action and the key differentiator front-loaded. No filler or redundant restatement of the tool name.

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 validation tool with no output schema and no annotations, the description leaves a notable gap: it never says what validation returns (pass/fail, error list) or how results are reported. The core purpose is conveyed, but an agent lacks the return-value context needed to use it confidently.

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 three parameters and the enum. The description's mention of 'lifestyle, product, and orbit schemas' merely echoes the schema_type enum values, adding no syntax, format, or default detail beyond the structured fields. Baseline 3 is appropriate.

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) and resource (metadata against ORBIT schemas) and adds the scope 'without embedding', which implicitly distinguishes it from the sibling embed_image_metadata. Clear enough that an agent can tell it apart from the read/create siblings, though it never names the alternatives.

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: you call this when you want to check metadata against a schema without writing it. The 'without embedding' clause hints at a when-not condition relative to embed_image_metadata, but there is no explicit when-to-use statement, no prerequisites, and no named alternatives.

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