Skip to main content
Glama

convert_volume_to_epub_file

Convert a Directmedia volume to EPUB format for e-book readers. Specify volume ID and output directory to create a readable EPUB file.

Instructions

Convert a Directmedia volume to EPUB format for e-book readers

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
volume_idYesVolume identifier (e.g., 'DB002')
output_dirYesDirectory where EPUB file will be created

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0-alpha.0

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It does not mention side effects like file creation/overwrite, required permissions, or failure conditions. It only states the conversion action, leaving the agent to infer the behavior.

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, focused sentence that front-loads the action and avoids redundancy. It is concise and to the point with no wasted words.

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 simple two-parameter conversion tool, the description is adequate but lacks context about the batch alternative and potential prerequisites. It also does not mention any error scenarios, though the output schema exists. Overall, it is minimally complete but missing some operational context.

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?

The schema covers both parameters with descriptions (volume_id and output_dir), so the baseline is 3. The description adds no additional semantic meaning beyond what the schema already provides, such as format constraints or directory requirements.

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 clear verb ('Convert') and resource ('Directmedia volume to EPUB format'), which makes the purpose unambiguous. However, it does not explicitly differentiate from the sibling 'batch_convert_to_epub' tool, relying on the name to imply single-volume conversion.

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 on when to use this tool versus batch_convert_to_epub or any prerequisites such as setting the library path (via set_library_path). The description only states what it does, not when to choose it over alternatives.

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