Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

get_items_by_id_cover

Read-onlyIdempotent

Fetch the cover image for any Audiobookshelf library item by its unique ID. Provides direct API access to item artwork for display or integration.

Instructions

Get items cover.

GET /api/items/{id}/cover

Args: id: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2/5.0
Behavior2/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. However, the description adds no additional behavioral context, such as the response format (e.g., image binary) or any side effects. It relies entirely on annotations and does not enrich them.

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

Conciseness2/5

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

The description is extremely brief, but this brevity is not effective conciseness—it is under-specification. The single sentence adds no useful content and could be removed entirely without loss. It is not 'appropriately sized' because it lacks substantive information.

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

Completeness2/5

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

While an output schema exists and annotations cover safety, the description fails to explain what a 'cover' is, how the returned data is formatted, or any constraints. Given the tool's simplicity, a minimal description could suffice, but this one adds nothing beyond the name, leaving an agent without confidence about the expected output or semantics.

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?

The only parameter 'id' is described as 'Path parameter' in the description, which merely echoes the schema's title 'Id' and the HTTP endpoint. Schema description coverage is 0%, and the description does not compensate by explaining the format, purpose, or possible values of the id. No value is added beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states 'Get items cover' which directly restates the tool name 'get_items_by_id_cover'. It adds no new information about what the cover is, what it represents, or how it differs from other sibling tools like get_items_by_id_metadata_object. This is a tautology rather than a clarifying statement.

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 provided on when to use this tool versus other item-related endpoints. There is no mention of alternatives, prerequisites, or context (e.g., that this returns an image). The description simply repeats the operation without any usage direction.

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