Skip to main content
Glama
rollecode

Bazarr MCP server

by rollecode

delete_movies_blacklist

DestructiveIdempotent

Remove movie subtitles from blacklist to allow them again. Target specific entries by provider and subtitle ID, or clear the entire list.

Instructions

Delete a movies subtitles from blacklist.

DELETE /api/movies/blacklist

Args: all: Empty movies subtitles blacklist provider: Provider name subs_id: Subtitles ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
allNo
subs_idNo
providerNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already indicate destructiveHint=true and idempotentHint=true, so the description does not need to restate deletion. It adds some useful behavioral context by noting that 'all' empties the movies subtitles blacklist, but it does not disclose side effects or whether a specific deletion requires both provider and subs_id.

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-loads the action and endpoint, followed by a compact argument list. The grammar is slightly awkward ('a movies subtitles'), but there is no redundant filler and every line serves a purpose.

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?

Given the output schema exists and annotations cover safety and idempotency, the description only needs to explain the operation and parameters. It covers both, but it leaves the key decision implicit: whether to use 'all' to clear everything or provider+subs_id to delete one entry, and which combinations are valid.

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

Parameters3/5

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

Schema description coverage is 0%, so the description must compensate for the bare schema. It gives a one-line meaning for each argument, which adds value beyond the schema, but the semantics of 'all' is terse and the relationship between all, provider, and subs_id is left implicit.

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 clear action ('Delete'), a resource ('movies subtitles'), and the target context ('blacklist'), and the endpoint line reinforces it. It is distinct enough from sibling tools like delete_movies_subtitles and delete_episodes_blacklist, though it does not explicitly call out the 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?

The description provides no guidance on when to use this tool versus sibling alternatives such as delete_movies_subtitles or delete_episodes_blacklist. The purpose is implied but there are no conditions, exclusions, or preference signals to help an agent choose correctly.

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