Skip to main content
Glama

create_content_section

Add a new section to a collection item's category by specifying workspace, content, category, and section name.

Instructions

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

workspace_id: target workspace ID — get available IDs from list_workspaces()
category_name: the name slug of the category (e.g. "week-1")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
content_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.3/5.0
Behavior2/5

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

The description only states the intended action without disclosing side effects, required permissions, error behavior, or idempotency. The annotations indicate readOnlyHint=false and destructiveHint=false, but the description does not elaborate on what happens when a section is created, such as whether it modifies the parent content item or category. Minimal behavioral detail is provided.

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 succinct and well-structured: a single purpose sentence followed by parameter clarifications. It avoids unnecessary detail and is easy to parse, making it efficient for an agent to understand the tool's core function.

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 covers the basic operation but lacks context about how the parameters interrelate (e.g., the relationship between content_id, workspace_id, and category_name) and what the expected output or return value is. Given the tool's moderate complexity, this is a notable gap, though the simple action type makes it somewhat acceptable.

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?

The description includes explanations for workspace_id and category_name (e.g., 'target workspace ID', 'the name slug of the category'), but leaves name and content_id undefined. The parameter names are somewhat self-explanatory, but full semantic clarity is missing for half of the parameters. This provides partial compensation for the schema's lack of parameter descriptions.

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?

The description clearly states the action: 'Create a section inside a collection content item's category.' It is specific about the resource (a section) and the context (inside a content item's category), which distinguishes it from sibling tools like create_section or update_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?

The description gives no guidance on when to use this tool versus alternatives. It does not mention conditions like 'use this instead of create_section' or explain the difference from other section-related operations. The only hint is the phrase 'inside a collection content item's category', but this is implicit rather than explicit.

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