Skip to main content
Glama

create_status_page_section

Create a section on a status page to organize components, using a display name, unique URL-friendly slug, and optional position within the page.

Instructions

Create a new section within a status page.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesSection display name (required), e.g. "API services".
slugYesURL-friendly slug (required, unique within the page), e.g. "api".
positionNoDisplay position within the page (smaller renders earlier).
pageIdentifierYesStatus page UID or URL-friendly slug, e.g. "public".

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.32.1

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of disclosing behavioral traits. It only states the action 'Create a new section' without describing what happens after creation—whether an ID is returned, what validation occurs, or any side effects. For a write operation, this is a significant gap.

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 a single, efficient sentence with zero filler. It front-loads the core action and is appropriately sized for a simple create operation. While it lacks depth, it is not verbose or redundant.

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

Completeness2/5

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

Given 4 parameters (3 required), no output schema, and no annotations, the description is too sparse. It doesn't mention what the tool returns, any prerequisites (e.g., needing an existing status page), or when to use it over siblings. An agent would lack essential context for correct invocation beyond the raw schema.

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?

Schema description coverage is 100%, meaning every parameter has a description in the schema itself. The tool description adds no parameter-specific meaning beyond what the schema already provides. Per the baseline, a 3 is appropriate since the schema does the heavy lifting.

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 states a specific verb ('Create') and resource ('a new section within a status page'), making the core purpose clear. It is specific enough to distinguish from tools like create_status_page, but it doesn't explicitly contrast with sibling create tools such as create_status_page_resource, which also operate on status page sub-entities. The term 'section' narrows it adequately, so a 4 is warranted.

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 provides no guidance on when to use this tool versus alternatives. It doesn't mention conditions, prerequisites, or alternatives like update_status_page_section or create_status_page_resource. An agent has no context to decide when this is the right tool among many sibling create/update operations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.