MinecraftWiki_getPageSummary
Extract a summary and section list from a Minecraft Wiki page to identify relevant content for precise information retrieval in subsequent queries.
Instructions
Step 2 of the recommended workflow: After finding a page through search, use this to get both the page summary AND a list of all available sections. This helps determine which specific section to retrieve next using getPageSection.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes | Title of the Minecraft Wiki page |
Input Schema (JSON Schema)
{
"properties": {
"title": {
"description": "Title of the Minecraft Wiki page",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}