Skip to main content
Glama
megamaced

collectives-mcp

by megamaced

rename_page

Idempotent

Rename a page within its parent by providing the page ID, collective ID, and a new title to update its name.

Instructions

Rename a page within its current parent.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageIdYes
newTitleYes
collectiveIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.2

TDQS

B3.2/5.0
Behavior2/5

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

Beyond the annotations, the description provides no information about side effects, permissions, title uniqueness constraints, or any other behavioral details. It only restates the core action.

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 extremely concise and contains no irrelevant information. It is a single clear sentence with no wasted words.

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?

For a simple rename action, the description is mostly adequate, but it omits details such as whether the new title must be unique, any error conditions, or what happens to the page's content. The 'within its current parent' clarification helps, but more context 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?

The schema has no per-parameter descriptions, and the tool description does not elaborate on collectiveId, pageId, or newTitle. While pageId and newTitle are somewhat inferable, collectiveId is not explained.

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 renames a page, and the phrase 'within its current parent' distinguishes it from move-related operations. It is specific and unambiguous.

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 does not explain when to use rename_page versus alternatives like update_page or move_page. It lacks explicit guidance on selecting this tool over siblings.

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