Skip to main content
Glama

get_library_sections_by_section_id_shows

Read-onlyIdempotent

Retrieve the list of TV shows from a specific Plex library section by providing its ID. Returns show details for browsing or integration.

Instructions

Get Section Shows.

GET /library/sections/{sectionId}/shows

Args: section_id: The id of the 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

B3/5.0
Behavior3/5

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

Annotations already cover the safety profile with readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds the GET method and path, which is consistent but not a substantive behavioral disclosure beyond the annotations. For a simple read-only operation, this is adequate.

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: purpose, endpoint, then the single argument. It contains no filler, though the Args block is somewhat redundant with the input schema.

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?

For a one-parameter, read-only operation with an output schema and strong annotations, the description is nearly sufficient for direct invocation. It falls short on selection clarity because it does not explain what 'shows' means or when to prefer this over the many similarly structured section tools.

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

Parameters2/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 'section_id: The id of the section,' which is nearly a restatement of the property name. It adds no detail about where the ID comes from, what values are valid, or how it relates to the URL placeholder.

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 the operation as 'Get Section Shows' and provides the HTTP endpoint, so the resource is clear and it is distinguishable from sibling tools for movies, albums, and episodes. It does not clarify that 'shows' means TV series, but the path segment makes the intent reasonably specific.

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 gives no when-to-use or when-not-to-use guidance and never mentions alternatives, even though many sibling tools exist for other section media types. Usage is only implied by the tool name and endpoint, with no exclusions or prerequisites.

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