Skip to main content
Glama

get_library_metadata_by_ids_similar

Read-onlyIdempotent

Get similar movies, shows, or other media from your Plex library by supplying comma-separated IDs. Discover related titles based on metadata.

Instructions

Get similar items.

GET /library/metadata/{ids}/similar

Args: ids: Comma-separated list of IDs

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior2/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds no behavioral context beyond the bare 'Get similar items' — nothing about result semantics, pagination, how multiple IDs affect output, or any caveats.

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 compact and front-loaded with the purpose, followed by the endpoint and parameter format. Every line earns its place; there is no fluff or redundant prose.

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 one-parameter, read-only tool with an output schema, the description provides the essential endpoint and parameter format. It is slightly incomplete because 'similar items' is ambiguous and no sibling or usage context is given, but nothing critical is missing for basic invocation.

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 schema only defines ids as a string with no format guidance, while the description explicitly states 'Comma-separated list of IDs' and the endpoint path confirms these are metadata IDs. This adds meaningful parameter semantics beyond the schema, though it does not explain constraints or expected ID count.

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 and resource: get similar items for library metadata IDs, and the endpoint path clarifies the resource. However, it does not differentiate this from sibling tools like get_library_metadata_by_ids_related or get_library_metadata_by_ids_all_leaves, and 'similar' remains somewhat vague.

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 related, nearest, or reviews endpoints. The description simply states what it does without indicating when it is appropriate or when a different sibling should be chosen.

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