Skip to main content
Glama
rollecode

Bazarr MCP server

by rollecode

get_plex_oauth_pin_by_pin_id_check

Read-onlyIdempotent

Check the status of a Plex OAuth pin by its pin ID to confirm whether the user has completed authentication.

Instructions

GET plex/oauth/pin/string:pin_id/check.

GET /api/plex/oauth/pin/{pin_id}/check

Args: pin_id: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pin_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2/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, so the safety profile is covered. However, the description adds no behavioral context beyond that—it does not say what 'check' returns, whether the PIN is consumed, or how it relates to the OAuth lifecycle. The description contributes essentially nothing beyond 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 short but redundant: the same route appears twice in slightly different formats ('<string:pin_id>' and '{pin_id}'). The only non-redundant line is the trivial Args note. This is under-specification, not efficient conciseness—every sentence does not earn its place.

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 an output schema present, return values are covered, but the tool's purpose, OAuth flow position, and relationship to sibling tools are unaddressed. Plex OAuth PIN checking is a stateful flow, and a one-line route plus path parameter label leaves the agent without enough context to call it appropriately.

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?

Schema description coverage is 0%, so the description must compensate. Its only contribution is 'pin_id: Path parameter', which tells the agent the parameter belongs in the path—but the schema already names it and the route template shows {pin_id}. No format, constraints, or meaning of pin_id beyond its name is given.

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 HTTP route ('GET plex/oauth/pin/<string:pin_id>/check.') and repeats it in full path form. It never states what the tool actually does, such as checking a Plex OAuth PIN's status or validity. This is essentially a mirror of the tool name, which already contains 'check', so it crosses into tautology.

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 on when to use this tool versus the many OAuth siblings like list_plex_oauth_pin, list_plex_oauth_validate, or create_plex_oauth_pin. The description does not explain the OAuth flow context, polling expectations, or any exclusions.

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