Skip to main content
Glama
abelsr

Plane MCP Server

by abelsr

Update Page

update_page

Update a Plane page's title or replace its body by supplying the page ID and the full new content. Provide plain text or HTML for the body.

Instructions

Update a page's title and/or body. At least one field is required.

Note: updating a page replaces its body, so pass the full content you want.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoNew title.
page_idYesPage UUID.
project_idNoProject UUID for a project page; omit for a workspace wiki page.
descriptionNoNew plain-text body (converted to HTML for you).
description_htmlNoNew HTML body; takes precedence over `description`.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed5 schema fields changedv0.1.1
    • addedInput schema / properties / description / description
      Added value: +"New plain-text body (converted to HTML for you)."
    • addedInput schema / properties / description_html / description
      Added value: +"New HTML body; takes precedence over `description`."
    • addedInput schema / properties / name / description
      Added value: +"New title."
    • addedInput schema / properties / page_id / description
      Added value: +"Page UUID."
    • addedInput schema / properties / project_id / description
      Added value: +"Project UUID for a project page; omit for a workspace wiki page."
  2. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

No annotations are present, so the description must carry behavioral transparency on its own. It discloses that updating replaces the page body and instructs the caller to pass full content, which is a critical side effect. It could additionally clarify behavior when only 'name' is passed, but the main mutation risk is addressed.

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 short sentences with no filler. The action is front-loaded, followed immediately by the most important caveat about body replacement, making every sentence earn its place.

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?

For a 5-parameter mutation tool with full schema coverage and an output schema present, the description covers the essential preconditions and side effects. It would be slightly stronger if it clarified that the body is only replaced when a body parameter is supplied, but the current text is sufficient for correct invocation.

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% and every parameter already has a meaningful description, so the baseline is 3. The description adds the rule that at least one update field is required and warns about full-body replacement, but does not substantially enrich individual parameter semantics beyond what the schema provides.

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?

Description opens with a specific verb and object: 'Update a page's title and/or body' and adds a business rule ('At least one field is required'). It is clearly distinguishable from sibling tools like create_page, delete_page, archive_page, and restore_page by restricting scope to modifying existing page content.

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 intended use is clear: this is the update counterpart to create_page and applies when an existing page's title or content must change. It does not explicitly name alternatives or exclusions, but the update-specific language and body-replacement note provide enough context for an agent to select it.

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