osrs_wiki_parse_page
Extract parsed HTML content from specific Old School RuneScape Wiki pages to access detailed game data like items, NPCs, and mechanics for analysis or integration.
Instructions
Get the parsed HTML content of a specific OSRS Wiki page.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | Yes | The exact title of the wiki page to parse (e.g., 'Dragon scimitar', 'Abyssal whip'). Case-sensitive. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"page": {
"description": "The exact title of the wiki page to parse (e.g., 'Dragon scimitar', 'Abyssal whip'). Case-sensitive.",
"type": "string"
}
},
"required": [
"page"
],
"type": "object"
}