Skip to main content
Glama

update_content_section

Rename a section within a content item's category by specifying the workspace, content, category, and section IDs, along with the new name.

Instructions

Rename a section inside a collection content item's category.

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
content_idYes
section_idYes
workspace_idYes
category_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.18

TDQS

B3.1/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 'rename' aligns with those. The description adds no detail about side effects, permissions, or whether renaming affects references.

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 two concise sentences and front-loads the action. It wastes no words and the workspace_id helper note is useful.

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?

With five required parameters and no parameter descriptions, the description is somewhat thin. An output schema exists, so return values need not be described, but more context on how the identifiers relate would improve completeness.

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 coverage is 0%, and only workspace_id gets a hint. The other parameters (content_id, section_id, category_name, name) rely on their names; 'name' especially is ambiguous (new name vs current name).

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 identifies the action ('rename') and resource ('section inside a collection content item's category'). It is distinguishable from many siblings, though it doesn't explicitly contrast with update_section or create_content_section.

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 alternatives like update_section or delete_content_section. The description only states what it does, not the conditions or use cases.

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