mediawiki_get_page
Retrieve full wiki page content in wikitext or HTML format by specifying the page title. Use this tool to read complete articles, documentation, or information pages from MediaWiki wikis.
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 |
|---|---|---|---|
| title | Yes | Page title to retrieve | |
| format | No | Output format: 'wikitext' (default) or 'html' |