Skip to main content
Glama
Vijay-Duke
by Vijay-Duke

update_confluence_page

Update an existing Confluence page by providing its page ID and current version number. Modify the title, content, or both, with version safeguards to prevent overwriting others' changes.

Instructions

Updates an existing Confluence page. You must provide the page ID and its current version number to prevent conflicts. You can update the title, content, or both.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNoThe new title for the page. If not provided, the title remains unchanged.
pageIdYesThe ID of the page to be updated.
contentNoThe new content for the page, in Markdown or storage format. If not provided, the content remains unchanged.
versionYesThe current version number of the page. This is required to ensure you are not overwriting someone else's changes.
minorEditNoSet to true if this is a minor edit that should not notify watchers. Default is false.
versionCommentNoA brief comment describing the changes made in this version.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

A3.9/5.0
Behavior3/5

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

There are no annotations, so the description carries the burden of behavioral disclosure. It usefully discloses optimistic-concurrency intent ('current version number to prevent conflicts') and partial update scope, but it does not state what happens on version mismatch, permission requirements, or side effects such as watcher notifications.

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 concise sentences front-load the action, then state the required inputs and the editable fields. No filler or repetition of schema details.

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?

The description is adequate for a standard update operation: it names the resource, scope, and required inputs. However, with no output schema and no annotations, it leaves gaps around conflict-failure behavior, return value, and when to prefer create/read sibling tools.

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 reinforces the role of pageId and version and mentions title/content, but it adds little beyond the schema's own field documentation.

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 opens with a specific action and resource: 'Updates an existing Confluence page.' The word 'existing' distinguishes it from sibling create_confluence_page, and 'title, content, or both' clarifies the scope of the update.

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?

It clearly establishes the use case (modifying an existing page) and the prerequisite of supplying pageId and current version to avoid conflicts. It does not explicitly name alternative tools or exclusion cases, so it stops short of a 5.

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