Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

get_podcasts_by_id_episode_by_episode_id

Read-onlyIdempotent

Retrieve a specific podcast episode by supplying the podcast ID and episode ID.

Instructions

Get a specific podcast episode.

GET /api/podcasts/{id}/episode/{episodeId}

Args: id: Path parameter. episode_id: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
episode_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds no behavioral nuance beyond the GET method, but it does not contradict the annotations.

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?

The description is short, front-loaded with the core purpose, and logically organized with the endpoint and argument list. The Args section is mostly redundant with the schema, but nothing is verbose or unnecessary.

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 simple read-only GET with two required string parameters and an output schema, this definition is essentially sufficient to invoke the tool correctly. It could be more complete by explaining parameter formats and positioning against sibling episode-related tools, but those are refinements rather than blockers.

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 must carry the semantic burden. It only repeats that id and episode_id are path parameters without explaining their formats, expected values, or relationships. The endpoint and tool name imply podcast ID and episode ID, but the description itself adds little meaning beyond 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 'Get a specific podcast episode' and includes the exact GET endpoint. This distinguishes it from the delete_ and patch_ variants of the same episode resource, and from other podcast-level getters.

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

Usage Guidelines3/5

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

The intended use is implied by the GET verb and episode-specific path, but there is no explicit guidance about when to choose this over related endpoints such as get_podcasts_by_id_search_episode or get_libraries_by_id_recent_episodes. It provides no exclusion criteria or alternative routing.

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