Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_me_ereader_devices

Idempotent

Register a new e-reader device for your Audiobookshelf account. Submit device details to enable syncing reading progress and manage device-specific settings via the API.

Instructions

Create or act on me ereader-devices.

POST /api/me/ereader-devices

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

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 idempotentHint=true, readOnlyHint=false, and destructiveHint=false, so the safety profile is covered. However, the description adds no behavioral context beyond the vague 'Create or act on' – it does not explain idempotency, side effects, or what happens on repeated calls. The phrase 'act on' introduces ambiguity about whether the tool may mutate or replace existing resources.

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 concise: two short sentences plus an Args block, with the endpoint front-loaded. It avoids fluff and clearly points to an authoritative schema source. However, the phrase 'Create or act on' is not as crisp as it could be, and the structure could benefit from a more precise action verb.

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?

An output schema exists, so return values are covered. The pointer to the GET/schema endpoint is essential for the open 'body' object, but the description does not explain what 'ereader-devices' are, their relationship to the current user, or why one would use this over sibling endpoints. It is minimally sufficient for a knowledgeable agent but lacks domain context.

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 schema has no descriptions for the single 'body' parameter (0% coverage), so the description must compensate. It only advises reading the matching GET or /schema endpoint, which is a pointer rather than actual parameter semantics. The agent still has no inline understanding of required fields or data types.

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: 'Create or act on me ereader-devices,' matching the endpoint and tool name. However, 'or act on' is ambiguous and could imply update/delete actions, weakening the clarity. It does not explicitly distinguish from sibling ereader-related tools like create_emails_ereader_devices.

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?

The description offers no guidance on when to use this tool versus alternatives, nor any exclusions or conditions. The only directive, 'Read the matching GET or the /schema endpoint first,' is a procedural instruction for body construction, not a usage guideline. An agent is left to infer the appropriate context from the name alone.

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