Skip to main content
Glama
igorolv

redmine-mcp-server

getWikiPage

getWikiPage
Read-onlyIdempotent

Fetch the full markup content and current version of a Redmine project wiki page to enable accurate updates.

Instructions

Read the complete markup content and current version of one known project wiki page. Use listWikiPages or searchWikiPages to discover its title; the returned version is required by updateWikiPage.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageTitleYesWiki page title (use 'Wiki' for the start page)
projectIdYesProject identifier or numeric ID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
textNoPage body in Textile or Markdown markup depending on the Redmine instance. Null in index listings.
titleNoPage title (URL-escaped form used as the path).
authorNoAuthor of the most recent revision.
versionNoMonotonic revision number of the page. Null for a content-less page in index listings.
commentsNoComment attached to the most recent revision.
createdOnNoWhen the page was first created, ISO-8601.
updatedOnNoWhen the page was last edited, ISO-8601.
attachmentsNoFiles attached to the page. Empty in index listings.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds behavioral context beyond that: it returns complete markup and the current version, and requires a known page title. This is useful supplemental detail without contradicting the annotations.

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 sentences, front-loaded with purpose, then usage guidance. Every sentence earns its place with no redundancy or filler.

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

Completeness5/5

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

With an output schema present to document return values, and annotations covering safety, the description covers all critical usage aspects: how to discover the title, what the return includes, and the relationship to updateWikiPage. Nothing essential is missing for an agent to call this correctly.

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 100%, so the baseline is 3. The description adds the 'use Wiki for the start page' hint for pageTitle, which is helpful but also present in the schema. No significant extra parameter meaning is provided beyond the schema, so a 3 is appropriate.

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 verb (read), the resource (project wiki page), and the exact scope (complete markup content and current version). It distinguishes itself from sibling tools like listWikiPages and searchWikiPages by specifying 'one known project wiki page', implying the caller must already have the exact title.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly instructs when to use this tool: after discovering the title via listWikiPages or searchWikiPages. It also states the returned version is required by updateWikiPage, giving a clear prerequisite and downstream use case. This provides both when-to-use and when-not-to-use guidance.

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