Skip to main content
Glama

get_library_sections_by_section_id_settings

Read-onlyIdempotent

Retrieve settings for a specific Plex library section by its ID. Use this to view configuration options for a media library.

Instructions

Get Section Settings.

GET /library/sections/{sectionId}/settings

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

B3.4/5.0
Behavior3/5

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

The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description does not need to re-establish safety. It adds the explicit HTTP GET route, which is useful behavioral context beyond the annotations. However, it does not describe response structure, authentication needs, or any side-effect-free guarantees beyond what annotations already provide.

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

Conciseness5/5

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

The description is compact and front-loaded: purpose, endpoint, and argument all appear in three short lines with no filler. Every sentence contributes useful information, and the Args block is directly tied to the only required parameter.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with one required integer parameter, rich annotations, and an output schema, the description is nearly sufficient. The endpoint and parameter meaning are enough for a correct call. The only weakness is the absence of any usage context distinguishing it from related section tools, but the low complexity keeps this from being a major gap.

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%, so the description must carry the parameter meaning. It does state that section_id is 'the unique identifier of the library section,' which adds semantic meaning beyond the bare integer type. Still, it is minimal: it does not explain where to obtain section IDs, any constraints on valid values, or how the value relates to the response.

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 uses a specific verb and resource: 'Get Section Settings' plus the exact route GET /library/sections/{sectionId}/settings. This makes the tool's purpose clear. However, it does not explicitly differentiate it from the many other section-based sibling tools, though 'settings' in the name and route is reasonably distinctive.

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?

No guidance is given about when to use this tool versus alternatives or when not to use it. The description only restates the basic retrieval action and parameter. Among the large sibling set, there is no explanation of how section settings relate to related tools such as get_library_sections_by_section_id_prefs or update_library_sections_by_section_id_prefs.

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