get_file_details
Retrieve detailed information about a specific file within the OSRS MCP Server's data directory by providing the filename, enabling efficient access to game-related data.
Instructions
Get details about a file in the data directory.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | The filename to get details for in the data directory |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"filename": {
"description": "The filename to get details for in the data directory",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}