Skip to main content
Glama

list_resources_2

Read-onlyIdempotent

List Plex server connection addresses with options to include HTTPS, relay, and IPv6 entries. Use it to retrieve available server resources for your Plex setup.

Instructions

Get Server Resources.

GET /resources

Args:
    include_https: Include Https entries in the results
    include_relay: Include Relay addresses in the results 

E.g: https://10-0-0-25.bbf8e10c7fa20447cacee74cd9914cde.plex.direct:32400 include_ipv6: Include IPv6 entries in the results

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
include_ipv6No
include_httpsNo
include_relayNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/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, which covers the safety profile. The description adds the endpoint and an example relay URL, but does not disclose behavior such as pagination, default returns when no flags are set, or whether filtering is inclusive/exclusive.

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 concise and front-loaded, using a clear 'Args:' list and one example. The example line is slightly misplaced after include_relay but does not significantly clutter the structure.

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

Completeness4/5

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

For a simple read-only GET endpoint with three optional flags and an existing output schema, the description provides enough information to call it successfully. It does not explain default behavior without flags, but this is a minor gap given the simplicity and available structured output.

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

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description carries the full burden of documenting parameters. It does give a purpose for each flag (include_https, include_relay, include_ipv6), but the schema types are string|null and the description does not specify allowed values or boolean semantics (e.g., 'true'/'false'), leaving 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 clearly states a specific action 'Get Server Resources' and maps it to the GET /resources endpoint. While it is unambiguous about what it does, it does not explicitly differentiate itself from the similarly named sibling 'list_resources' or other list-* tools beyond the endpoint.

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?

The description provides no guidance on when to use this tool versus alternatives like 'list_resources' or 'list_servers'. It lists optional filter flags but does not explain the intended use case, prerequisites, 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