
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
mcp-dolphin
Advanced tools
MCP server for Dolphin (GameCube + Wii) — drives memory r/w, GameCube + Wii Remote (buttons + IR pointer + accelerometer + MotionPlus), reset, savestate, and frame advance via Felk's Python-scripting Dolphin fork
An MCP server for Dolphin (GameCube + Wii) — drives memory r/w, controller input (GameCube + Wii Remote), pause/resume/reset, savestates, and frame advance from MCP-compatible clients (Claude Desktop, Claude Code, etc.).
Not yet wired in v0.1.0 (deferred to a later release):
┌─────────────────────────────────────────────────┐
│ Dolphin (Felk's fork — required, not mainline) │
│ │
│ mcp_bridge.py loaded via Scripting panel │
│ └─ TCP server on 127.0.0.1:55355 │
└─────────────────────────────────────────────────┘
↕ TCP loopback (newline-delimited JSON)
┌─────────────────────────────────────────────────┐
│ mcp-dolphin (Node.js — this package) │
└─────────────────────────────────────────────────┘
↕ MCP stdio
MCP client (Claude etc.)
Mainline Dolphin does not have Python scripting. mcp-dolphin talks to Felk's actively-maintained Dolphin fork which embeds Python with first-class access to memory, controllers, savestates, and the frame loop. Mainline Dolphin Python PRs (#7064) have been stuck since 2022; the Lua forks (dolphinWatch, SwareJonge/Dolphin-Lua-Core) are dead. Felk is the only living scripting path.
Grab a build from Felk/dolphin Releases — currently Python Scripting Preview 4 (December 2025). Unzip it somewhere you can find. It's a regular Dolphin build plus a Scripting panel under the View menu.
If you see Python errors when loading the bridge, enable the Scripting log type: View → Show Log Configuration → check Scripting (set verbosity to "Info" or "Error"), then View → Show Log so the log window is visible.
npx -y mcp-dolphin --print-bridge > mcp_bridge.py
Then in Felk's Dolphin:
mcp_bridge.py you just wrote.[mcp-bridge] listening on 127.0.0.1:55355 (bridge v0.1.0).The script keeps running as long as Dolphin is open. Remove it from the Scripting panel to stop the bridge.
Claude Code:
claude mcp add dolphin --scope user mcp-dolphin
Claude Desktop — edit claude_desktop_config.json:
{
"mcpServers": {
"dolphin": {
"command": "npx",
"args": ["-y", "mcp-dolphin"]
}
}
}
Restart your MCP client after editing.
Load a GameCube or Wii game in Dolphin, then ask the agent to call dolphin_ping. You should see OK — bridge v0.1.0 (Felk Python fork).
| Tool | Description |
|---|---|
dolphin_ping | Liveness probe + bridge-version sniff |
dolphin_get_info | Report bridge version and Dolphin label |
dolphin_read8/16/32/64 | Read PowerPC memory (big-endian) |
dolphin_read_range | Bulk read up to 64 KiB as hex dump |
dolphin_write8/16/32/64 | Write PowerPC memory |
dolphin_press_gc_buttons | Set GameCube controller state (port + button/axis dict) |
dolphin_press_wiimote_buttons | Set Wii Remote button state |
dolphin_set_wiimote_pointer | Set Wii Remote IR pointer position (port + x + y) |
dolphin_set_wiimote_acceleration | Set Wii Remote accelerometer (port + x + y + z, ~g units) |
dolphin_set_wiimote_angular_velocity | Set Wii MotionPlus angular velocity (port + x + y + z, rad/s) |
dolphin_reset | Emulation soft-reset (pause/resume deferred to v0.2 — see Known limitations) |
dolphin_frame_advance | Wait N frames (TAS sequencing) |
dolphin_save_state / dolphin_load_state | Slot-based savestate (0-255) |
| Range | Region |
|---|---|
0x80000000-0x817FFFFF | MEM1 main RAM (24 MiB) — GC + Wii |
0x80000020 | OS_GLOBALS — disc ID, FST pointer, etc. |
0x90000000-0x93FFFFFF | MEM2 (64 MiB) — Wii only |
0xCC000000+ | Flipper / Hollywood I/O — reads usually safe, writes can wedge |
0xCD000000+ | Wii-only Hollywood registers |
PowerPC is big-endian on hardware. The bridge handles byte-swap on read/write — pass and receive the value the game logically sees, not the byte order.
dolphin_press_gc_buttons){
"port": 0,
"state": {
"A": true, "B": false, "Start": true,
"StickX": 200, "StickY": 128,
"TriggerLeft": 0, "TriggerRight": 255
}
}
A, B, X, Y, Z, Start, L, R, Up, Down, Left, RightStickX, StickY, CStickX, CStickY (0-255, 128 = center)TriggerLeft, TriggerRight (0-255, 0 = released)dolphin_press_wiimote_buttons){ "port": 0, "state": { "A": true, "Plus": true, "Up": true } }
A, B, One, Two, Plus, Minus, Home, Up, Down, Left, Right| Env var | Default | Purpose |
|---|---|---|
DOLPHIN_BRIDGE_HOST | 127.0.0.1 | Bridge host (the Dolphin process is local, so this rarely changes) |
DOLPHIN_BRIDGE_PORT | 55355 | Bridge port (must match LISTEN_PORT in mcp_bridge.py) |
DOLPHIN_TIMEOUT_MS | 10000 | Per-call timeout |
MCP_DOLPHIN_DEBUG | unset | Set to 1 to trace every TX message on stderr |
If you change the port, edit both mcp_bridge.py (in your scripts dir) and set DOLPHIN_BRIDGE_PORT.
| Symptom | Cause / Fix |
|---|---|
Dolphin bridge not reachable | Dolphin not running, script not loaded in Scripting panel, or wrong port. Check Dolphin's Log window for [mcp-bridge] listening on .... |
unknown method: <something> from bridge | Bridge script is older than mcp-dolphin. Re-export with npx mcp-dolphin --print-bridge > mcp_bridge.py and reload in Dolphin. |
| Memory reads return 0xFFFFFFFF or error | Address is unmapped on the current title. MEM2 (0x90000000+) is Wii-only; reading it on a GameCube game returns garbage. |
| Controller input has no effect | Game expects input on a different port. Try port: 0 first, then 1-3. For Wii games requiring motion, this v0.1.0 doesn't cover Wii Remote pointer/accel yet. |
| Tool calls hang ~10 s then time out | Bridge script crashed inside Dolphin. Open Felk's Scripting panel, remove the script, re-add it. |
MIT — see LICENSE.
FAQs
MCP server for Dolphin (GameCube + Wii) — drives memory r/w, GameCube + Wii Remote (buttons + IR pointer + accelerometer + MotionPlus), reset, savestate, and frame advance via Felk's Python-scripting Dolphin fork
The npm package mcp-dolphin receives a total of 15 weekly downloads. As such, mcp-dolphin popularity was classified as not popular.
We found that mcp-dolphin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.