Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_podcasts_opml_create

Idempotent

Bulk-create podcasts from OPML feed URLs. Submit an OPML file to add all listed podcast feeds to your Audiobookshelf library.

Instructions

Bulk create podcasts from OPML feed URLs.

POST /api/podcasts/opml/create

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

B3/5.0
Behavior3/5

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

Annotations already establish readOnly=false, idempotent=true, destructive=false, so the safety profile is covered. The description adds the 'bulk' behavior and OPML feed URLs as the input source, but doesn't explain side effects, response behavior, or auth needs.

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 text is short and front-loaded with the operation, followed by endpoint and parameter sections. The 'Args' boilerplate is minimal and does not significantly hurt clarity.

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?

With an output schema present and annotations available, the description doesn't need to cover return values, but the body shape is left completely open. Pointing to the /schema endpoint helps an agent recover, though it doesn't make the definition self-contained.

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 exposes a single opaque body object with additionalProperties:true and 0% field coverage, so the description needed to compensate. It only labels the parameter as 'request payload' and defers to the GET/schema endpoint, without naming or describing the expected OPML-feed-URL fields.

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 opening sentence names a specific verb ('bulk create'), resource ('podcasts'), and input source ('OPML feed URLs'), so the operation is clear. It does not explicitly differentiate from nearby siblings like create_podcasts, create_podcasts_feed, or create_podcasts_opml_parse, so it falls just short of full sibling distinction.

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 given about when to choose this tool over create_podcasts, create_podcasts_feed, or create_podcasts_opml_parse. The description only states what the endpoint does, with no preconditions, exclusions, 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