Skip to main content
Glama
thamaraiselvam

Jira & Confluence MCP Server

get_confluence_page_versions

Retrieve the version history of a Confluence page, returning each version's author, timestamp, and optional message for audit or rollback.

Instructions

Get the version history of a Confluence page. Returns a list of versions with author, timestamp, and optional version message.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of versions to return (1-200, default 25).
pageIdYesThe ID of the Confluence page to retrieve version history for.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.1.2

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It usefully discloses the return shape – a list of versions with author, timestamp, and optional version message – and 'Get' implies read-only semantics. It says nothing about permission requirements or ordering of results, leaving meaningful behavioral gaps.

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 short sentences, front-loaded with the core purpose, then the return contents. No filler, no redundancy with the schema.

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 simple two-parameter read tool with no output schema, the description covers purpose and return fields adequately. It could add a note on defaults or result ordering, but nothing essential for correct invocation is missing.

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 both pageId and limit (including range and default) are fully documented in the schema. The description adds no parameter detail beyond that, which is the baseline 3 case.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource: 'Get the version history of a Confluence page.' It clearly distinguishes itself from the closest sibling, get_confluence_page, by scoping to version history rather than page content. It stops short of naming that sibling explicitly, so it is clear but not maximally differentiated.

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?

There is no when-to-use or when-not-to-use guidance and no mention of alternatives such as get_confluence_page. Usage is only implied by the name and description; an agent must infer that this is the tool for historical revisions.

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