Summary
The VICE backend calls vice.config.set to enable warp mode, but the correct tool name is vice.machine.config.set.
Current Behavior
WARN | VICE warp mode control not available via MCP (requested: enabled)
Trace shows:
MCP request: vice.config.set
MCP response: {"error":{"code":-32601,"message":"Tool not found"}}
Fix
Change the tool name from vice.config.set to vice.machine.config.set.
The parameter format also differs. VICE MCP expects:
{
"name": "vice.machine.config.set",
"arguments": {
"resources": {
"WarpMode": 1
}
}
}
Note: WarpMode is not yet exposed through vice.machine.config.set (see barryw/vice-mcp#4). Once both are fixed, warp mode will work.
Summary
The VICE backend calls
vice.config.setto enable warp mode, but the correct tool name isvice.machine.config.set.Current Behavior
Trace shows:
Fix
Change the tool name from
vice.config.settovice.machine.config.set.The parameter format also differs. VICE MCP expects:
{ "name": "vice.machine.config.set", "arguments": { "resources": { "WarpMode": 1 } } }Note: WarpMode is not yet exposed through
vice.machine.config.set(see barryw/vice-mcp#4). Once both are fixed, warp mode will work.