get-page
Retrieve a wiki page object including metadata, license, revision details, and optional content formats like source or rendered HTML using the MediaWiki MCP server.
Instructions
Returns the standard page object for a wiki page, optionally including page source or rendered HTML, and including the license and information about the latest revision.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | Format of the page content to retrieve | noContent |
title | Yes | Wiki page title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"default": "noContent",
"description": "Format of the page content to retrieve",
"enum": [
"noContent",
"withSource",
"withHtml"
],
"type": "string"
},
"title": {
"description": "Wiki page title",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}