Skip to main content
Glama
rollecode

Bazarr MCP server

by rollecode

create_series

Idempotent

Assign or change a language profile for a specific series in Bazarr by providing the series ID and profile ID, solving subtitle language mismatch issues.

Instructions

Update specific series languages profile.

POST /api/series

Args: seriesid: Sonarr series ID profileid: Languages profile(s) ID or "none"

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
seriesidNo
profileidNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

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

Beyond the annotations, the description only says 'Update', which does not disclose side effects, whether the previous profile is replaced, or any authentication prerequisites. It adds no behavioral context to the existing idempotentHint/readOnlyHint 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 short and front-loaded, with a clear one-sentence overview followed by a compact args list. The endpoint line adds minor context but is not waste.

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 and simple parameters, the core call information is mostly present, and the parameter semantics are documented. However, the missing usage guidance and the create/update ambiguity leave an agent without enough context to confidently select and invoke the tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, but the description compensates by explaining that seriesid is the Sonarr series ID and profileid is the language profile ID(s) or the sentinel 'none'. This gives crucial meaning not available in the schema.

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 action ('Update specific series languages profile') on a specific resource, so an agent can understand the operation. However, it does not differentiate from siblings such as patch_series or create_series, and the tool name 'create_series' conflicts with the update semantics.

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 use this tool versus alternatives like patch_series or create_series, or when the 'none' profile value is appropriate. The context is limited to raw parameters, leaving selection to inference.

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