MCP server for persistent live mGBA control with script bridge, screenshots, memory and input tooling
Project description
mgba-live-mcp
MCP server for persistent, live mGBA control. It is designed for agent workflows that need to keep one emulator process running across multiple tool calls (input, Lua, memory reads, OAM/entity dumps, screenshots).
If you need one-shot/headless runs instead of persistent sessions, see struktured-labs/mgba-mcp.
What You Get (MCP Context)
- Long-lived session lifecycle:
mgba_live_start,mgba_live_attach,mgba_live_status,mgba_live_stop - Metadata-only control:
mgba_live_input_tap,mgba_live_input_set,mgba_live_input_clear,mgba_live_run_lua,mgba_live_start_with_lua - Visual tools:
mgba_live_get_view,mgba_live_input_tap_and_view,mgba_live_run_lua_and_view,mgba_live_start_with_lua_and_view,mgba_live_export_screenshot - Inspection:
mgba_live_read_memory,mgba_live_read_range,mgba_live_dump_pointers,mgba_live_dump_oam,mgba_live_dump_entities - Explicit session scoping for all single-session tools after
mgba_live_start session_idreturned in every successful single-session response
MCP reference: docs/mcp-reference.md
Quick Start (uvx)
- Run directly from PyPI with
uvx:
uvx mgba-live-mcp
- If you want to run from git (for unreleased changes), use:
uvx --from git+https://github.com/penandlim/mgba-live-mcp mgba-live-mcp
- Register in an MCP client (Codex example):
[mcp_servers.mgba]
command = "uvx"
args = ["mgba-live-mcp"]
Git fallback (if package is not yet published):
[mcp_servers.mgba]
command = "uvx"
args = ["--from", "git+https://github.com/penandlim/mgba-live-mcp", "mgba-live-mcp"]
Local Development
- Install dependencies for this repo:
uv sync
- Provision the checksum-verified open-source test ROM used by emulator-backed tests:
make test-rom
- Run the MCP server:
uv run mgba-live-mcp
- Register it in your MCP client (Codex example):
[mcp_servers.mgba]
command = "uv"
args = [
"run",
"--directory",
"/absolute/path/to/mgba-live-mcp",
"mgba-live-mcp",
]
- Install and run pre-commit hooks (lint/checks via
uv run):
make precommit-install
make precommit-run
Requirements And Setup Links
- mGBA:
Build/install a Qt + Lua-capable binary (
mgba-qt/mGBA) with these required CMake flags:-DBUILD_QT=ON -DENABLE_SCRIPTING=ON -DUSE_LUA=ON - uv:
Python package/runtime manager used by this repo (
uv sync,uv run ...) - Model Context Protocol: Protocol used by the server; configure this process as an MCP server in your client
Important runtime notes:
- A ROM path is required to start (
.gba,.gb,.gbc). - Binary auto-discovery order:
mgba-qt,mgba,mGBA. - If auto-discovery fails, pass
mgba_pathinmgba_live_startormgba_live_start_with_lua. - Runtime state is stored at
~/.mgba-live-mcp/runtime(sessions, logs, command/response files). - Dead or crashed session directories are moved to
~/.mgba-live-mcp/runtime/archived_sessions/instead of being deleted. - Archived sessions are not treated as active and are not returned by
mgba_live_statuscalls. - This is a hard cutover from repo-local
.runtime; no hybrid fallback is used. - This is also a hard API cutover at
0.4.0: single-session tools require explicitsession, same-session overlap is rejected, and screenshots come only from explicit visual tools. - If you have old repo-local sessions, migrate manually by copying
.runtime/*to~/.mgba-live-mcp/runtime/. mgba_live_statuswithall=truelists sessions from this shared user-level runtime root.scripts/mgba_live_bridge.luais transitional for local workflows; packagedsrc/mgba_live_mcp/resources/mgba_live_bridge.luais the runtime source of truth.
Common MCP Flows
1) Start a session
{
"rom": "/absolute/path/to/game.gba",
"fast": true
}
Notes:
fast: truemaps tofps_target=600- default when omitted is
fps_target=120
2) Start + run Lua immediately
Use mgba_live_start_with_lua when you need first-frame setup and metadata only.
{
"rom": "/absolute/path/to/game.gba",
"code": "return emu:currentFrame()"
}
3) Start + run Lua + capture a view
{
"rom": "/absolute/path/to/game.gba",
"code": "return emu:currentFrame()"
}
Use mgba_live_start_with_lua_and_view when you want the same setup flow plus
one post-settle screenshot.
4) Tap input and capture after settle
{
"session": "20260220-120000",
"key": "A",
"frames": 2,
"wait_frames": 6
}
Use mgba_live_input_tap_and_view for this flow. wait_frames is applied
after release before the screenshot is captured.
5) Read memory
{
"session": "20260220-120000",
"start": 49664,
"length": 64
}
6) Get a current view without persisting
{
"session": "20260220-120000"
}
Use mgba_live_get_view for a one-off in-memory screenshot.
7) Save screenshot to a known path
{
"session": "20260220-120000",
"out": "/tmp/mgba-shot.png"
}
Important Behavior
mgba_live_startis bootstrap-only (no Lua arg, no screenshot return).mgba_live_start_with_luarequires exactly one offileorcode.mgba_live_status(session)is metadata-only, andmgba_live_status(all=true)never returns screenshots.mgba_live_run_lua,mgba_live_input_tap,mgba_live_input_set,mgba_live_input_clear, andmgba_live_start_with_luaare metadata-only.mgba_live_run_lua_and_view,mgba_live_input_tap_and_view, andmgba_live_start_with_lua_and_vieware the settled visual composite tools.mgba_live_get_viewandmgba_live_export_screenshotare explicit screenshot tools.mgba_live_export_screenshotpersists a file and returns that path plus image content.mgba_live_get_viewreturns only image content plus frame metadata.- Visual tools fail hard on settle or snapshot failure instead of returning a warning alongside a screenshot.
Local CLI (Dev/Debug)
The MCP server wraps scripts/mgba_live.py. This script is a compatibility shim
that delegates to the packaged module CLI.
uv run python scripts/mgba_live.py --help
uv run python scripts/mgba_live.py start --help
make test
Quality commands:
make lint
make typecheck
make test
make check
Release Checklist
- Confirm version is
0.4.0inpyproject.tomlandsrc/mgba_live_mcp/__init__.py. - Add release notes in
CHANGELOG.md. - Run local checks:
uv sync --group dev && make check && uv build - Trigger TestPyPI publish workflow (
publish-testpypi) and verify install from TestPyPI. - Push tag
v0.4.0to trigger the PyPI release workflow. - Smoke test:
uvx mgba-live-mcpanduvx --from git+https://github.com/penandlim/mgba-live-mcp mgba-live-mcp.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mgba_live_mcp-0.4.0.tar.gz.
File metadata
- Download URL: mgba_live_mcp-0.4.0.tar.gz
- Upload date:
- Size: 111.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41d95cca01fe74ab8fc5cb9e44b9ec69383a6f06e36b608df30f5bb72c207a95
|
|
| MD5 |
da4dadba30853b106f4a6d870735fcf6
|
|
| BLAKE2b-256 |
30c4f251bcffe5c5833c56f37146760d1d1f22613871a8d93272d300b399b8b0
|
Provenance
The following attestation bundles were made for mgba_live_mcp-0.4.0.tar.gz:
Publisher:
release.yml on penandlim/mgba-live-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mgba_live_mcp-0.4.0.tar.gz -
Subject digest:
41d95cca01fe74ab8fc5cb9e44b9ec69383a6f06e36b608df30f5bb72c207a95 - Sigstore transparency entry: 1365820191
- Sigstore integration time:
-
Permalink:
penandlim/mgba-live-mcp@d151426d2b9fb3a9cf5902c0b6c1c4d4458e4e51 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/penandlim
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d151426d2b9fb3a9cf5902c0b6c1c4d4458e4e51 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mgba_live_mcp-0.4.0-py3-none-any.whl.
File metadata
- Download URL: mgba_live_mcp-0.4.0-py3-none-any.whl
- Upload date:
- Size: 26.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85f32d18d63e6f72eb2a3dbfbf4c7f06501f19b4449441e8cf4cc7e2c20f6f81
|
|
| MD5 |
cf02357e8495e4fddf5035e0ed48ce52
|
|
| BLAKE2b-256 |
7bbc529b8f8671e143eab82b3294f03a2c24f416d482336ee32bc68f2ce60eed
|
Provenance
The following attestation bundles were made for mgba_live_mcp-0.4.0-py3-none-any.whl:
Publisher:
release.yml on penandlim/mgba-live-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mgba_live_mcp-0.4.0-py3-none-any.whl -
Subject digest:
85f32d18d63e6f72eb2a3dbfbf4c7f06501f19b4449441e8cf4cc7e2c20f6f81 - Sigstore transparency entry: 1365820299
- Sigstore integration time:
-
Permalink:
penandlim/mgba-live-mcp@d151426d2b9fb3a9cf5902c0b6c1c4d4458e4e51 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/penandlim
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d151426d2b9fb3a9cf5902c0b6c1c4d4458e4e51 -
Trigger Event:
push
-
Statement type: