Skip to main content
Glama

get_library_sections_by_section_id_edit

Read-onlyIdempotent

Edit a Plex library section by providing its unique ID to update its configuration.

Instructions

Edit Section.

GET /library/sections/{sectionId}/edit

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

D1.9/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the tool is known to be a safe read. The description adds only the HTTP path and does not disclose what 'edit' means, what response is returned, or any side effects or limitations. With annotations covering safety, the bar is lower, but the description still contributes no behavioral context.

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 appropriately short and structured, but 'Edit Section.' is a fragment that adds little and may mislead. The HTTP path and Args block mostly restate information already in the tool name and schema. No sentence earns a clear informational payoff.

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 serious an output schema and safe annotations, the description still fails to explain the purpose of the 'edit' variant, how it differs from the base get_library_sections_by_section_id, or what an agent should do with the result. An agent cannot reliably decide when this tool is relevant.

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. The only parameter, section_id, is described as 'The unique identifier of the library section,' which adds minimal meaning beyond the schema's field name and integer type. It does not explain how to obtain the ID, any constraints, or the parameter's role in the edit context.

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 'Edit Section.' is a fragment that restates the tool name without specifying what the operation actually does. While the HTTP path and GET method hint it is a read operation, it is ambiguous whether this tool edits a section or retrieves data for an editing UI, especially compared to the straightforward get_library_sections_by_section_id sibling.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines1/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given on when to use this tool versus the many other library section tools, such as get_library_sections_by_section_id, get_library_sections_by_section_id_settings, or get_library_sections_by_section_id_prefs. There is no mention of alternatives, prerequisites, or context for the 'edit' variant.

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