Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

get_public_session_by_id_track_by_index

Read-onlyIdempotent

Retrieve a specific track from a public session using its session ID and track index. Get the track's details for the requested position.

Instructions

Get session track.

GET /public/session/{id}/track/{index}

Args: id: Path parameter. index: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
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 declare readOnlyHint, idempotentHint, and destructiveHint, so the description adds no behavioral context beyond them. It does not mention auth requirements, error behavior, response semantics, or anything the agent wouldn't already infer from 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 compact and front-loaded, with the core action and endpoint in the first lines. The Args section is minimal but not bloated, though it adds little beyond the schema.

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 GET with annotations and an output schema, the route alone may be enough for invocations where id and index are already known. Still, the lack of parameter semantics and usage context makes it less than fully self-sufficient.

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 schema description coverage at 0%, the description should compensate by explaining the parameters. It only labels id and index as 'Path parameter', without clarifying that id is the session identifier and index is the track index, leaving the agent to infer meaning from the URL/name.

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?

States a specific action ('Get') and resource ('session track'), and the endpoint template identifies how the resource is addressed. However, it does not clarify what a 'session track' is or how this differs from the similar sibling get_public_share_by_slug_track_by_index.

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?

Provides no guidance on when to use this tool or when to prefer an alternative. It does not distinguish this endpoint from related session/share track endpoints and gives no selection context.

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