Skip to main content
Glama

get_library_sections_by_section_id_common

Read-onlyIdempotent

Retrieve common metadata fields for items in a Plex library section by providing its section ID.

Instructions

Get common fields for items.

GET /library/sections/{sectionId}/common

Args: section_id: Section identifier

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.9/5.0
Behavior2/5

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

The description adds no behavioral detail beyond what the annotations already provide: readOnlyHint, idempotentHint, and destructiveHint=false. The endpoint line restates the method as GET, which the annotations already imply, and there is no mention of auth requirements, response behavior, or other operational details.

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 front-loaded with the core action, followed by the endpoint and argument list. There is no wasted text, though the brevity contributes to the lack of context.

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?

The read-only annotations and presence of an output schema reduce the burden on the description. However, the phrase 'common fields for items' is vague and the description does not clarify what 'common' means or how this endpoint relates to the many similar sibling endpoints, leaving some ambiguity for an agent trying to decide whether it is the right tool.

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%, and the description gives one line: 'section_id: Section identifier'. This is minimally helpful but mostly restates the schema's property title 'Section Id' and does not explain how the section_id maps to the path or where to obtain it. With only one required parameter, it is just barely adequate.

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 and resource: 'Get common fields for items' plus the concrete endpoint 'GET /library/sections/{sectionId}/common'. This is clear enough, though it does not differentiate itself from the many sibling get_library_sections_by_section_id_* tools.

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 the many similar section-related endpoints such as get_library_sections_by_section_id_categories or get_library_sections_by_section_id_albums. No exclusions, alternatives, or context are provided.

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