MinecraftWiki_listCategoryMembers
Easily retrieve all pages within a specific category on the Minecraft Wiki, such as 'Items', 'Blocks', or 'Entities', with customizable limits for efficient browsing.
Instructions
List all pages that are members of a specific category on the Minecraft Wiki.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | The name of the category to list members from (e.g., 'Items', 'Blocks', 'Entities', 'Structure Blueprints'). | |
limit | No | The maximum number of pages to return (default: 100, max: 500). |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "The name of the category to list members from (e.g., 'Items', 'Blocks', 'Entities', 'Structure Blueprints').",
"type": "string"
},
"limit": {
"description": "The maximum number of pages to return (default: 100, max: 500).",
"type": "number"
}
},
"required": [
"category"
],
"type": "object"
}