mediawiki_get_page
Retrieve the full content of any wiki page by title, supporting wikitext or HTML output.
Instructions
Retrieve full wiki page content.
USE WHEN: User says "show me the X page", "what's on the Main Page", "read the FAQ".
NOT FOR: Getting page structure/TOC (use mediawiki_get_sections). Not for searching content (use mediawiki_search_in_page). Not for metadata only (use mediawiki_get_page_info). If title not found, use mediawiki_resolve_title to handle typos and case sensitivity.
PARAMETERS:
title: Page name (required)
format: "wikitext" (default) or "html"
RETURNS: Page content in requested format. Large pages truncated at 25KB.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rationale | No | Optional one-sentence explanation of why you are calling this tool. Used for audit trails when present. | |
| title | Yes | Page title to retrieve | |
| format | No | Output format: 'wikitext' (default) or 'html' |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| page_id | Yes | ||
| content | Yes | ||
| format | Yes | ||
| revision_id | Yes | ||
| timestamp | Yes | ||
| truncated | No | ||
| message | No |