Skip to main content
Glama

get_services_browse_by_base64path

Read-onlyIdempotent

Browse a Plex filesystem path by providing its base64-encoded value to access media folders and files.

Instructions

Browse Filesystem Path.

GET /services/browse/{base64path}

Args: base64path: The base64path

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
base64pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.4/5.0
Behavior2/5

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

The description adds no behavioral context beyond what annotations already declare. The readOnlyHint, idempotentHint, and destructiveHint already communicate the safety profile, but the description does not explain what 'browse' returns, whether authentication is required, or how path traversal/encoding behaves.

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

Conciseness3/5

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

The description is very short and front-loaded with the purpose, which is good. However, the 'Args' line merely restates the parameter name and adds no value, so not every sentence earns 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?

For a tool with one required parameter and no schema descriptions, the definition is incomplete. It omits essential parameter semantics and usage context, even though the output schema and annotations cover some aspects. An agent would likely need to guess how to construct base64path correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/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, but it only says 'base64path: The base64path' — a pure tautology. It does not explain that the value is a base64-encoded filesystem path, how to encode it, or what formats are accepted.

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 action ('Browse') on a specific resource ('Filesystem Path'), and the GET route clarifies the operation. It is clear enough to identify the tool's function, though it does not differentiate from the similar sibling list_services_browse.

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 alternatives such as list_services_browse or other browsing endpoints. The description does not mention any exclusions, prerequisites, or context that would help an agent choose it.

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