Skip to main content
Glama
rollecode

Bazarr MCP server

by rollecode

list_system_ping

Read-onlyIdempotent

Check Bazarr server availability by pinging the system endpoint and verifying an HTTP 200 response.

Instructions

Return status and http 200.

GET /api/system/ping

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

B3.4/5.0
Behavior3/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. The description adds that it returns HTTP 200, but does not clarify what 'status' means, error behavior, or response structure. It adds minimal value beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is exceptionally concise—two lines with the endpoint and expected response. It fronts the core purpose and contains no extraneous information. Every word earns its place.

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?

For a zero-parameter ping with rich annotations, the description is minimally sufficient. However, it does not explicitly state that this is a health check to verify API availability, and the term 'status' is ambiguous. It also omits any mention of the output schema (which exists), though that is typically unnecessary if the schema is self-explanatory.

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 tool has zero parameters, so there is nothing to explain. Per the calibration, a 0-parameter tool receives a baseline of 4. The description adds no parameter-related ambiguity.

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 verb ('Return') and a specific resource (status and HTTP 200). It is distinguished from sibling tools like list_system_health and list_system_status by being a simple ping endpoint, though 'status' is somewhat vague and could be interpreted as system status or HTTP status.

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 explicit guidance on when to use this tool versus alternatives. The description does not mention that this is a lightweight connectivity check or that list_system_health might be more appropriate for detailed health information. The usage is left entirely implicit.

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