Skip to main content
Glama

batch_delivery_publish

Publishes all completed batch songs as WAV files, optionally converting to MP3 and applying metadata tags, using a single release manifest.

Instructions

Publish all completed batch songs together as WAV/optional tagged MP3/report/ZIP using one recoverable release manifest.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mp3No
tagsNo
job_idYes
project_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries full weight for behavioral disclosure. It reveals the formats produced and mentions a 'recoverable release manifest', which hints at recovery semantics. However, it does not mention permissions, idempotency, or how recovery ties into sibling tools like delivery_recover.

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 sentence with the core action front-loaded and every clause adds a distinct fact: scope, output formats, and recoverability. There is no filler or unnecessary repetition.

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?

The high-level behavior is covered well: completed batch songs, output formats, and recoverability via a manifest. However, the nested tags parameter is not described at all, and without an output schema or annotations, the agent is left without guidance on return semantics or the recovery workflow details.

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?

Schema description coverage is 0%, so the description needs to compensate. It only hints at 'optional tagged MP3', which relates to the mp3 parameter, but it never names or explains the tags object or its many nested fields. Required identifiers project_id and job_id are left entirely to the schema.

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 clearly states a specific verb ('publish'), resource ('all completed batch songs'), and deliverable formats ('WAV/optional tagged MP3/report/ZIP'), which distinguishes it from siblings like batch_render or delivery_publish. The action and scope are unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It conveys the clear precondition that batch songs must be completed and that the operation covers all of them together. It does not explicitly name alternatives or state when not to use it, but the context is strong enough for an agent to recognize this as the batch publishing step.

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