Skip to main content
Glama

get_library_sections_by_section_id_artists

Read-onlyIdempotent

Retrieve artists from a specific Plex library section by providing the section ID. Use this to fetch all artists in a music library.

Instructions

Get Section Artists.

GET /library/sections/{sectionId}/artists

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?

The annotations already declare the tool read-only, idempotent, and non-destructive. The description adds no behavioral context beyond repeating the endpoint path, such as response characteristics, ordering, or any side effects, so it provides little value beyond the structured annotations.

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 compact and front-loaded: a one-line summary, the endpoint path, and the single argument. There is no filler or unnecessary explanation, though it could have used the space to add real usage context.

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?

This is a low-complexity, read-only endpoint with one required parameter and an output schema, so the description is nearly sufficient. It lacks a richer explanation of what 'artists' means in this context, but annotations and schema cover the essential safety and return-value aspects.

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?

The schema has 0% description coverage, so the description needed to explain section_id meaningfully. 'The id of the section' is essentially a restatement of the parameter name and schema title 'Section Id', adding no practical guidance about what a section is or where the ID comes from.

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 Artists', and the endpoint path clarifies exactly which resource is being accessed. It does not explicitly distinguish itself from sibling section endpoints like albums, movies, or shows, but the resource noun 'artists' is unambiguous.

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 similar sibling tools. It does not mention alternatives, exclusions, or typical use cases, leaving the agent to infer appropriateness solely from the resource name.

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