Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

get_items_by_id_file_by_fileid_download

Read-onlyIdempotent

Download a specific file from an Audiobookshelf item by providing the item ID and file ID. Use this to retrieve audio or other media files directly.

Instructions

Get file download.

GET /api/items/{id}/file/{fileid}/download

Args: id: Path parameter. fileid: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
fileidYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/5.0
Behavior2/5

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

The annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the description needs to add more context such as response format or authentication. It only restates the endpoint and path parameters, adding no behavioral information beyond what the annotations provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and front-loaded with the core purpose, which is good. However, the 'Args' section is redundant with the input schema and endpoint template, so not every line earns its place.

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 read-only download with two required path parameters, strong annotations, and an output schema, this is close to minimally viable. It still lacks guidance on selecting this download tool over closely related siblings and does not explain what the returned download contains.

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?

With 0% schema description coverage, the description needed to explain what id and fileid represent and how they are used. It merely labels both as 'Path parameter', which is also inferable from the URL template, so it does not meaningfully compensate for the missing schema descriptions.

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 opens with 'Get file download', naming the specific verb and resource, and the endpoint path makes the target clear: a file associated with an item. It is recognizable against siblings like get_items_by_id_file_by_fileid even though it does not explicitly call out the difference.

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 for when this tool should be chosen over alternatives such as get_items_by_id_download or get_items_by_id_file_by_fileid. The description provides neither exclusions nor conditions, so an agent must infer usage from the tool name and endpoint.

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