MinecraftWiki_getSectionsInPage
Retrieve a structured list of all sections within a specific Minecraft Wiki page by providing its title. Simplify navigation and access to detailed information.
Instructions
Retrieves an overview of all sections in the page.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes | Title of the page to retrieve sections for. |
Input Schema (JSON Schema)
{
"properties": {
"title": {
"description": "Title of the page to retrieve sections for.",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}