Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

get_public_share_by_slug_track_by_index

Read-onlyIdempotent

Fetch a specific track from a public Audiobookshelf share by providing the share slug and track index to retrieve audio details or playback information.

Instructions

Get share track.

GET /public/share/{slug}/track/{index}

Args: slug: Path parameter. index: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYes
indexYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.8/5.0
Behavior2/5

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

Annotations already convey readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safe read-only profile is covered. The description adds only the HTTP method and path structure, which repeats rather than extends the annotations; no additional behavioral details such as error cases, authentication needs, or response characteristics are disclosed.

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 compact and front-loaded with the core action, and the Args section is clearly structured. It avoids fluff, though it is arguably too minimal to carry much explanatory weight; still, every sentence is efficient and relevant.

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?

Given the low complexity, read-only annotations, and presence of an output schema, the description covers the basic invocation surface: the endpoint and path parameters. However, it omits contextual guidance about what a share track is and how this endpoint relates to other share endpoints, leaving minor but real gaps for an agent unfamiliar with the API.

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 needed to explain the parameters, but it only labels them as 'Path parameter' without providing meaning or constraints. It adds slightly more than the schema by indicating location, but it does not clarify what a slug identifies, what an index represents, or what value formats are expected.

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 specific verb and resource ('Get share track') and includes the exact endpoint path, making the main purpose clear. It does not explicitly differentiate itself from sibling tools like get_public_share_by_slug or get_public_share_by_slug_cover, but the resource and path structure are specific enough to avoid real ambiguity.

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?

There is no guidance on when to use this tool versus alternatives, no mention of prerequisites, and no indication of what distinguishes it from related share endpoints. The description simply restates the action and URL, leaving the agent to infer usage context from the tool name and sibling list.

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