mediawiki_get_page_summary
Retrieve the lead section and key metadata of a wiki page, including categories, page size, section list, and last edit timestamp, to provide a quick overview without loading the full content.
Instructions
Get lead section + key metadata without loading the full page.
USE WHEN: User asks "what is X about", "quick overview of X", "summarize the X page". Much lighter than mediawiki_get_page for large pages.
NOT FOR: Full page content (use mediawiki_get_page). Not for specific sections (use mediawiki_get_sections with section parameter).
PARAMETERS:
title: Page name (required)
RETURNS: Lead section (intro before first heading), page size, categories, section list, last edit timestamp.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Page title to get summary for |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| page_id | Yes | ||
| lead_content | Yes | ||
| format | Yes | ||
| length | Yes | ||
| revision_id | Yes | ||
| last_edited | Yes | ||
| categories | No | ||
| section_count | Yes | ||
| sections | No | ||
| redirect | No | ||
| redirect_to | No | ||
| message | No |