Skip to main content
Glama

get_library_sections_by_section_id_first_characters

Read-onlyIdempotent

Retrieve the first characters for a Plex library section to enable alphabetical browsing. Provide a section ID to get the list of starting letters used for filtering media.

Instructions

Get list of first characters.

GET /library/sections/{sectionId}/firstCharacters

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

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

Annotations already declare readOnlyHint=true, idempotentHint=true, openWorldHint=true, and destructiveHint=false, fully covering the safety profile. The description adds only the HTTP endpoint, which largely restates the tool name, and discloses no additional behavioral traits such as pagination, ordering, or response shape.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and front-loaded, but brevity borders on under-specification. The endpoint line and Args line add minimal value beyond the name and schema, so not every sentence earns its place; still, there is no wasted verbiage.

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 tool with annotations and an output schema present, the structural burden is light. The main gap is semantic: it never explains what 'first characters' refers to or how the list is ordered, leaving the agent to infer the tool's browse-by-letter purpose.

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 carry parameter meaning, but 'section_id: Section identifier' merely restates the schema's 'Section Id' title. It adds no detail about format, constraints, how to discover valid IDs, or the effect of the value on the result set.

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

Purpose3/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 list of first characters' for a library section) and the endpoint makes the resource explicit. However, 'first characters' is ambiguous without context — it never says first characters of titles/items — so an agent cannot fully grasp what data comes back. It is distinguishable from siblings by name, but the description itself does not do the distinguishing work.

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 sibling get_library_sections_by_section_id_* tools (albums, movies, shows, newest, recently_added, etc.). No exclusions, prerequisites, or alternative routes are mentioned, leaving the agent to guess the appropriate selection context.

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