MinecraftWiki_getPageSection
Retrieve a specific section from a Minecraft Wiki page by providing the page title and section index. Use after obtaining the page summary to access detailed content in the desired section.
Instructions
Get a specific section from a Minecraft Wiki page. Should be used as step 3 after searching for the page and getting its summary. The section index corresponds to the order of sections on the page, starting with 0 for the main content, 1 for the first section, 2 for the second section, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sectionIndex | Yes | Index of the section to retrieve (0 = main, 1 = first section, 2 = second section, etc.) | |
title | Yes | Title of the Minecraft Wiki page |
Input Schema (JSON Schema)
{
"properties": {
"sectionIndex": {
"description": "Index of the section to retrieve (0 = main, 1 = first section, 2 = second section, etc.)",
"type": "number"
},
"title": {
"description": "Title of the Minecraft Wiki page",
"type": "string"
}
},
"required": [
"title",
"sectionIndex"
],
"type": "object"
}