Skip to main content
Glama

verify_delivery

Verify that a delivered artifact exists, is non-empty, and meets specified minimum and maximum size bounds.

Instructions

Verify an artifact exists, is non-empty, and is within size bounds.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
max_bytesNo
min_bytesNo

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?

With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals what checks are performed, but does not disclose what happens on success or failure — whether it returns a boolean, throws an error, or exits with a non-zero code. This is critical for a verification tool and is left entirely unspecified.

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?

A single front-loaded sentence with zero filler. It is efficiently structured and each clause corresponds to a parameter or core behavior. Slightly more structure could have accommodated usage guidance, but as written it is appropriately tight.

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 tool with no output schema and no annotations, the description is under-specified. Missing: what the tool returns, how failure is signaled, whether the operation is read-only, and how min_bytes/max_bytes behave when omitted. An agent cannot fully predict invocation consequences from this definition.

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 0%, so the description must compensate. It does connect 'within size bounds' to the min_bytes/max_bytes parameters and 'exists' to path, adding meaning the bare schema lacks. However, it does not clarify whether the bounds are inclusive, what happens when only one bound is supplied, or what kind of path is expected.

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 ('Verify') and resource ('artifact') and enumerates precise conditions: existence, non-emptiness, and size bounds. It is clearly distinct from siblings like ship, render_markdown, and count_pages, though it does not explicitly name 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?

No guidance is given about when to invoke this tool versus alternatives. The siblings are obviously different operations, so context is weakly implied rather than stated, but there is no mention of prerequisites, appropriate calling context, or when NOT to use it.

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

Deploy Server

Other Tools