Skip to main content
Glama

get_library_sections_by_section_id_clips

Read-onlyIdempotent

Retrieve short clips from a Plex library section by its ID. Pass the section ID to get available clips for that section.

Instructions

Get Section Clips.

GET /library/sections/{sectionId}/clips

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

C2.9/5.0
Behavior2/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. However, the description adds no behavioral context beyond the HTTP method, such as response scope, pagination, filtering, or relationship to related endpoints.

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 short, front-loaded with the main purpose, and contains no filler. It is only slightly more informative than the name and schema, but it is efficiently structured.

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 simple read-only endpoint with one parameter and an output schema, the description is nearly sufficient. However, it does not explain what counts as a clip or when to choose this endpoint over the many sibling section tools, and it relies heavily on annotations and the tool name.

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 description explicitly defines section_id as 'The id of the section', which gives basic semantic meaning for the only parameter. Schema description coverage is 0%, but for a simple integer parameter tied to a URL path, this minimal clarification is adequate, though no example or source is provided.

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 names the resource ('Section Clips') and the HTTP verb, and the endpoint path gives an unambiguous target. It does not explicitly contrast with sibling section tools such as categories or unwatched, but the resource name is specific enough to distinguish in most cases.

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 about when to use this tool versus the many get_library_sections_by_section_id_* siblings. The description only states the operation and parameter, leaving the agent to infer appropriateness from the 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