load_rom
Load a GameBoy ROM file into the MCP GameBoy Server by specifying the file path, enabling interaction with the emulator for testing or gameplay.
Instructions
Load a GameBoy ROM file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
romPath | Yes | Path to the ROM file |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"romPath": {
"description": "Path to the ROM file",
"type": "string"
}
},
"required": [
"romPath"
],
"type": "object"
}