Skip to main content
Glama
rollecode

Bazarr MCP server

by rollecode

list_plex_oauth_validate

Read-onlyIdempotent

Validates the Plex OAuth token against Bazarr to confirm authorization status. Use this to verify Plex integration and troubleshoot connection problems.

Instructions

GET plex/oauth/validate.

GET /api/plex/oauth/validate

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.3/5.0
Behavior2/5

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

Annotations already cover the safety profile (readOnlyHint, idempotentHint, destructiveHint), so the description should add behavioral context beyond them. Instead, it merely repeats the endpoint. It does not describe validation semantics, possible response states, or error conditions—though it also does not contradict the annotations.

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 very short, but it repeats the same endpoint path twice, making the second line redundant. It is compact but not effective because the repetition wastes space and no sentence adds meaningful detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With zero parameters and an output schema, the structural burden is low, but the tool's functional purpose is still unclear. The description fails to explain what the response represents, how to interpret validation outcomes, or when this endpoint should be used among the Plex OAuth sibling tools.

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?

The input schema has zero parameters, so there is nothing for the description to document. The schema fully covers this aspect, and no parameter explanations are needed.

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

Purpose2/5

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

The description only restates the endpoint path 'GET plex/oauth/validate' as both a title and an HTTP route. It does not explain what 'validate' does, what it checks, or what a valid result means, so the purpose remains vague and essentially a tautology of the tool name.

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 provided about when to use this tool versus its siblings such as get_plex_oauth_pin_by_pin_id_check or list_plex_oauth_servers. There is no context for selecting this endpoint, no prerequisites, and no alternatives mentioned.

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