Skip to main content
Glama

delete_hubs_sections_by_section_id_manage_by_identifier

DestructiveIdempotent

Delete a custom hub from a Plex library section using its section ID and hub identifier to remove it from managed hubs.

Instructions

Delete a custom hub.

DELETE /hubs/sections/{sectionId}/manage/{identifier}

Args: section_id: The section ID for the hubs to change identifier: The identifier of the hub to change

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
identifierYes
section_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already establish destructiveHint=true, readOnlyHint=false, and idempotentHint=true. The description only adds 'custom hub' scope and restates the DELETE verb; it does not describe consequences, permissions, or invalid inputs, so its incremental behavioral information is modest.

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?

Terse and front-loaded: the purpose appears in the first sentence, followed by one endpoint line and two short parameter lines. No filler or marketing language.

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 straightforward two-parameter delete with annotations covering destructiveness/idempotency and an output schema present, this is mostly complete for invoking the call. The main gap is lack of guidance on which sibling to contrast with, which is already penalized under usage guidelines.

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?

With 0% schema description coverage, the Args lines are the only parameter documentation. They explain each parameter's role at a high level ('section ID for the hubs to change', 'identifier of the hub to change'), but they don't offer format constraints, where the identifier comes from, or how to discover valid values.

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

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description opens with a specific verb and object: 'Delete a custom hub.' The endpoint and args reinforce that this removes one hub by section and identifier, which separates it from the broader hub-management siblings enough for basic identification.

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 choose this tool over delete_hubs_sections_by_section_id_manage, update_hubs_sections_by_section_id_manage_by_identifier, or get_hubs_sections_by_section_id_manage. An agent must infer from the name that this deletes a specific managed hub.

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