osrs_wiki_search
Search the Old School RuneScape (OSRS) Wiki for pages matching specific terms using a dedicated tool. Retrieve relevant results with customizable limits and pagination offsets for precise queries.
Instructions
Search the OSRS Wiki for pages matching a search term.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of results to return (1-50) | |
offset | No | Offset for pagination (0-based) | |
search | Yes | The term to search for on the OSRS Wiki |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"limit": {
"description": "Number of results to return (1-50)",
"maximum": 50,
"minimum": 1,
"type": "integer"
},
"offset": {
"description": "Offset for pagination (0-based)",
"minimum": 0,
"type": "integer"
},
"search": {
"description": "The term to search for on the OSRS Wiki",
"type": "string"
}
},
"required": [
"search"
],
"type": "object"
}