Skip to main content
Glama

Create Page

create_page

Create a page in the product spine for PRDs or docs, with optional parent and product scoping. Provide plain text content; returns the new page id and title.

Instructions

Create a Page (in-product doc / PRD on the spine) and return it (id, title). body is plain text — blank-line-separated blocks become paragraphs; omit it for a blank page. title defaults to 'Untitled'. product_id / parent_id (a parent page) are optional and verified in-org.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoPage content as plain text; blank lines separate paragraphs (optional).
iconNoAn emoji icon for the page (optional).
titleNoPage title (optional; 'Untitled' when omitted).
parent_idNoParent page id to nest under, from list_pages (optional).
product_idNoProduct to scope it to, from whoami (optional).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.1.14
  2. Removedv0.1.13
  3. Addedv0.1.6

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already indicate a non-read-only, non-idempotent, non-destructive operation. The description adds meaningful behavioral context: return values, paragraph separation, default title, and in-org verification. No contradiction with annotations.

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?

Two sentences, front-loaded with the main purpose, and every clause adds necessary detail. No filler or redundant phrasing.

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

Completeness5/5

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

The description is self-sufficient for a create tool with no required parameters and no output schema. It covers defaults, body behavior, optional IDs, validation, and the shape of the return value.

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%, so the baseline is 3. The description adds some context beyond schema (e.g., return id/title, verified in-org), but much of it restates the schema (title defaults to 'Untitled', blank-line paragraph separation). Overall, the schema does the heavy lifting.

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 identifies the action ('Create'), the resource ('Page'), and the context ('in-product doc / PRD on the spine'). It also states what is returned (id, title), making it easy to distinguish from update_page or list_pages.

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

Usage Guidelines4/5

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

The description explains key usage details: body formatting, title default, and optional/verified product_id and parent_id. It does not explicitly contrast with update_page or list_pages, but the context is clear enough for correct use.

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