Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_podcasts_by_id_download_episodes

Idempotent

Download podcast episodes by providing the podcast ID and a request body specifying which episodes to fetch.

Instructions

Download podcast episodes.

POST /api/podcasts/{id}/download-episodes

Args: id: Path parameter. body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
bodyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

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?

Annotations already indicate readOnlyHint=false, idempotentHint=true, and destructiveHint=false, so the base safety profile is covered. The description adds that this is a POST request with a request payload and tells the agent to inspect the schema for body fields, but it does not disclose side effects, auth requirements, or what launching a download entails.

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 compact and front-loaded with the core action, then the endpoint, then the two arguments. There is no filler or redundant restatement, and the schema-instruction sentence earns its place because the body is otherwise undocumented.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a POST operation with an opaque body, the description gives an actionable way to discover the request shape ('read the matching GET or /schema endpoint'), and an output schema is present so return-value detail is not required. It is slightly incomplete in not describing the actual effect of downloading episodes, but the endpoint and annotations provide enough context for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema is minimal: id is an untyped string and body is an opaque object with additionalProperties. The description adds meaning by identifying id as a path parameter and body as the request payload, and it compensates for the empty body schema by directing the agent to read the matching GET or /schema endpoint to learn expected fields.

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 'Download podcast episodes,' a clear verb plus resource, and includes the full POST endpoint, so an agent can understand the action. It does not explicitly contrast with sibling tools like get_podcasts_by_id_downloads or create_podcasts_by_id_match_episodes, but the endpoint and action phrase are specific enough to disambiguate.

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 use this tool versus alternatives such as get_podcasts_by_id_downloads, get_podcasts_by_id_episode_by_episode_id, or create_podcasts_by_id_match_episodes. The only procedural note—'Read the matching GET or the /schema endpoint first'—addresses how to discover request fields, not when to choose this operation.

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