search_tabletypes
Find interface tab definitions in the tabletypes.txt file by searching with a query. Supports pagination to manage results efficiently. Use this tool to locate specific game data entries.
Instructions
Search the tabletypes.txt file for interface tab definitions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number for pagination | |
pageSize | No | Number of results per page | |
query | Yes | The 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"
}