Skip to main content
Glama
rollecode

Bazarr MCP server

by rollecode

list_plex_webhook_list

Read-onlyIdempotent

List Plex webhooks registered in Bazarr to review or troubleshoot subtitle automation.

Instructions

GET plex/webhook/list.

GET /api/plex/webhook/list

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/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, covering the safe-read profile. The description adds no extra behavioral context such as authentication needs, rate limits, pagination, or what the response contains. It does not contradict the annotations, but it contributes nothing beyond 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 short but not well-structured: the same GET path appears twice in two consecutive lines, so the second sentence does not earn its place. The space is wasted on repetition instead of adding useful semantic detail.

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?

The empty input schema and annotations cover arguments and safety, and an output schema exists, so the return shape is available elsewhere. Still, the description does not explain what the webhook list represents or when to use this over sibling Plex tools. For a zero-parameter read it is nearly viable, but the missing semantic definition keeps it incomplete.

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?

This tool has zero parameters, so there is no parameter meaning for the description to clarify beyond the empty schema. The baseline of 4 applies because there are no parameters that could be undocumented.

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

Purpose3/5

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

The description names the HTTP method and resource ('GET plex/webhook/list'), so an agent can infer it performs a read of the Plex webhook list. However, it never defines what a webhook list is or what it returns, and it does not distinguish this from related Plex/webhook tools. It is a step above a pure tautology but still vague.

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?

There is no guidance about when to use this tool instead of alternatives like list_plex_autopulse_config or create_plex_webhook_create/delete. The GET method is the only hint, which is already implicit in the tool's name. No explicit when/when-not or alternative routing is provided.

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