Skip to main content
Glama
rollecode

Bazarr MCP server

by rollecode

list_files

Read-onlyIdempotent

List the contents of any directory on the Bazarr server by specifying a path, enabling navigation of media files for subtitle management.

Instructions

List Bazarr file system content.

GET /api/files

Args: path: Path to browse

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3/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 the endpoint and the path parameter but does not disclose behavior like whether the path is required, what happens with a null path, or whether the listing is recursive. No contradiction with annotations.

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-loaded with the main purpose. The Args section is minimal but not bloated. It earns its place, though it could be slightly more informative without becoming verbose.

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 simple read-only list tool with one optional parameter and an output schema, the description is mostly adequate. However, the lack of differentiation from list_files_radarr/list_files_sonarr and lack of path semantics leave some gaps for an agent deciding how to invoke it.

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. It only says 'path: Path to browse', which adds minimal meaning beyond the schema's 'Path' title. It does not explain path format, allowed values, or the consequence of omitting it.

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 specific verb ('List') and resource ('Bazarr file system content'), and includes the HTTP endpoint. It is clear what the tool does, though it doesn't explicitly distinguish it from the sibling tools list_files_radarr and list_files_sonarr, which are likely more specific variants.

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 given on when to use this tool versus list_files_radarr or list_files_sonarr. The description only says 'List Bazarr file system content' with a path argument, leaving the agent to infer which file-listing tool is appropriate for a given context.

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