Skip to main content
Glama

MCP GameBoy Server

smithery.yaml1.08 kB
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml startCommand: type: stdio configSchema: # JSON Schema defining the configuration options for the MCP. type: object required: - romPath properties: romPath: type: string default: ./roms/dangan.gb description: Path to the GameBoy ROM file mode: type: string default: stdio description: "Transport mode: stdio or sse" port: type: number default: 3000 description: Port for SSE mode commandFunction: # A JS function that produces the CLI command based on the given config to start the MCP on stdio. |- (config) => { const args = []; if (config.mode === 'sse') { args.push('--sse'); } return { command: 'node', args: ['dist/index.js', ...args], env: { ROM_PATH: config.romPath, PORT: String(config.port) } }; } exampleConfig: romPath: ./roms/dangan.gb mode: stdio port: 3000

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mario-andreschak/mcp-gameboy'

If you have feedback or need assistance with the MCP directory API, please join our Discord server