OSRS MCP Server

search_invtypes

Search inventory type definitions from the invtypes.txt file in Old School RuneScape. Filter results by query with pagination for efficient access to game data.

Instructions

Search the invtypes.txt file for inventory type definitions in the game.

Input Schema

NameRequiredDescriptionDefault
pageNoPage number for pagination
pageSizeNoNumber of results per page
queryYesThe term to search for in the file

Input Schema (JSON Schema)

{ "additionalProperties": false, "properties": { "page": { "default": 1, "description": "Page number for pagination", "minimum": 1, "type": "integer" }, "pageSize": { "default": 10, "description": "Number of results per page", "maximum": 100, "minimum": 1, "type": "integer" }, "query": { "description": "The term to search for in the file", "type": "string" } }, "required": [ "query" ], "type": "object" }
ID: ctkzx8ysig