Skip to main content
Glama

get_library_sections_by_section_id_match

Read-onlyIdempotent

Find matching media items in a Plex library section by providing its section ID. Use this tool to identify duplicates or related content within a specific section.

Instructions

Match Section Items.

GET /library/sections/{sectionId}/match

Args: section_id: The unique identifier of the library section

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
section_idYes

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 annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. However, the description adds no behavioral context beyond the GET URL; it does not clarify whether the operation returns matched items, initiates a match process, or has any side effects.

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 compact and well-structured: a short label, the HTTP path, and the parameter definition. There is no wasted text, though the label is too terse to be truly informative.

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 parameter, an output schema, and safety annotations, the description is minimally callable, but it fails to explain the meaning of 'match' or when this endpoint is appropriate. The agent can invoke it, but may not correctly choose it among the many similar library-section and metadata-match tools.

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?

The only parameter, section_id, is described as 'The unique identifier of the library section,' which is minimal but does convey its role. Since schema coverage is 0%, the description partially compensates, though it adds little beyond what the schema title 'Section Id' already implies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Match Section Items' essentially restates the endpoint name without explaining what 'match' means or what the tool actually returns. The GET line identifies the transport mechanism but not the semantic purpose, leaving the tool indistinguishable from other match/unmatch operations in the sibling list.

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 about when to use this tool versus related alternatives such as update_library_metadata_by_ids_match, get_library_sections_by_section_id_unmatch, or list_library_matches. The agent is left to infer use from the endpoint name alone.

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