Skip to main content
Glama
megamaced

collectives-mcp

by megamaced

create_page

Create a new page under a specified parent, promoting the parent to a folder if it is a leaf page. Optionally initialize content from a template.

Instructions

Create a new page under a parent. If the parent is a leaf page, it is automatically promoted to a folder. Optionally initialise from a template.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoMarkdown body. Optional.
emojiNoOptional single emoji to set as the icon.
titleYesPage title; becomes the filename.
templateIdNoTemplate page id to copy initial content from.
collectiveIdYes
parentPageIdYesParent page id. To create at the root, pass the Landing page id.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.2

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=false and destructiveHint=false, covering the mutating and non-destructive nature. The description adds the key side effect of auto-promoting a leaf page to a folder, which is not evident from the annotations. It does not disclose permission requirements or error behavior, but the addition of the promotion effect provides meaningful context beyond the structured fields.

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 with no filler. The core action is front-loaded ('Create a new page under a parent'), followed immediately by the key behavioral note and the optional template feature. Every sentence contributes meaning.

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

Completeness4/5

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

The description covers the essential purpose, the promotion side effect, and the optional template, which together with the schema (that explains the landing page for root and marks required fields) provide sufficient context for an agent to invoke the tool correctly. It does not mention permissions or failure modes, but for a create tool with this schema coverage, it is reasonably complete.

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 coverage is 83%, so the schema already documents most parameters. The description only restates the roles of parent (parentPageId) and template (templateId) without adding new semantic details. For example, it does not clarify the meaning of collectiveId or any constraints beyond what the schema provides. This aligns with the baseline 3 for high schema coverage.

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 tool's function with a specific verb ('Create') and resource ('page'), and specifies the context ('under a parent'). It also adds two distinctive behaviors—promoting a leaf page to a folder and optional template initialization—which distinguishes it from sibling tools like update_page, delete_page, and copy_page.

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?

The description implies when to use the tool (to create a page under a parent, optionally from a template) but does not explicitly mention alternatives or conditions for when not to use it. It lacks direct routing to sibling tools like copy_page or list_templates, leaving some inference to the agent.

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