Skip to main content
Glama

get_library_sections_by_section_id_refresh

Read-onlyIdempotent

Refresh a Plex library section by its ID to scan for new media and update metadata.

Instructions

Get Refresh Section.

GET /library/sections/{sectionId}/refresh

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.3/5.0
Behavior3/5

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

Annotations declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is already clear. The description adds no behavioral context beyond the HTTP method and path, which are already implied by the name. It does not contradict the annotations, but it also does not disclose any additional behavior such as what 'refresh' does or what the response contains.

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 very short, which is concise, but it is under-specified rather than efficiently informative. The HTTP path and Args block are useful, but the main sentence 'Get Refresh Section' is vague and does not earn its place as a meaningful explanation.

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 and an output schema, the description is minimal. However, the operation is a refresh action, which typically has side effects on server state; the description does not explain what refresh does, when it is needed, or what the output represents. The annotations cover safety, but the description leaves the agent without enough context to use the tool correctly.

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 for the undocumented parameter. The description only lists 'section_id: Section identifier' in the Args block, which adds minimal meaning beyond the schema's 'Section Id' title. It does not explain what a section identifier is, how to obtain it, or any constraints.

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 is essentially a tautology: 'Get Refresh Section' restates the tool name without explaining what a refresh section is or what the operation does. The HTTP path is included, which adds some specificity, but the description does not clarify the resource or behavior beyond the name.

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 provided on when to use this tool versus alternatives. The sibling list includes many similar library section tools (e.g., get_library_sections_by_section_id, create_library_sections_by_section_id_refresh, delete_library_sections_by_section_id_refresh), but the description does not distinguish this refresh operation from them or explain the intended use case.

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