Skip to main content
Glama

update_section

Rename a section inside a channel category by providing workspace, channel, category, and section IDs along with the new name.

Instructions

Rename a section inside a channel category.

workspace_id: target workspace ID — get available IDs from list_workspaces()

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
channel_idYes
section_idYes
category_idYes
workspace_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.18

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint false and destructiveHint false, and the description confirms it is a renaming operation. However, it does not disclose any potential side effects, permission requirements, or failure conditions beyond what the annotations imply.

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 extremely concise, with no unnecessary words. It states the purpose and provides a helpful tip for one parameter in a single short sentence.

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

Completeness3/5

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

The description is minimal but sufficient given the sibling tools (create_section, delete_section, etc.) provide context for the resource hierarchy. It does not mention return values or error cases, though an output schema is noted as present elsewhere.

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 zero description coverage and the description only explains workspace_id. The meanings of channel_id, category_id, section_id, and name are not described, leaving the agent to infer them from context.

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 clearly states the action ('Rename') and the resource ('a section inside a channel category'), which distinguishes it from other update tools. It could be slightly more specific about the hierarchical context, but it is effective.

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

Usage Guidelines3/5

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

Provides guidance for the workspace_id parameter by pointing to list_workspaces(), but does not mention when to use this tool over alternatives like create_section or delete_section, nor does it explain the overall rename workflow.

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