MCP-AmigaOS4
Health Uyari
- License — License: BSD-3-Clause
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Low visibility — Only 7 GitHub stars
Code Gecti
- Code scan — Scanned 12 files during light audit, no dangerous patterns found
Permissions Gecti
- Permissions — No dangerous permissions requested
Bu listing icin henuz AI raporu yok.
MCP server for driving AmigaOS 4.1 machines (QEMU + real hardware) via Model Context Protocol
MCP-AmigaOS4
A Model Context Protocol server for
driving AmigaOS 4.1 machines — both QEMU guests and real PowerPC
hardware — from MCP-aware clients such as Claude Code, Claude Desktop,
and IDE plugins.
At a glance
Brings AmigaOS 4.1 inside your AI client. From a single MCP session you
can:
- Browse and edit files on the target Amiga, run AmigaDOS
commands with captured stdout, upload large binaries with zlib
compression and resumable chunks. - Inspect live state — running tasks, opened libraries, mounted
volumes, public screens, the last alert (decoded), CPU + cache +
AttnFlags. - Drive QEMU lifecycle — start, stop, screenshot the framebuffer,
save / restore VM snapshots, attach a GDB stub for whole-system
debug. - Coordinate a fleet — run one method across any mix of QEMU
guests and real hardware in parallel; barrier, quorum, or
cross-target file relay. - Install AmigaOS 4.1 FE end-to-end onto a blank volume — preflight,
ISO mount, copy, LHA extract, Kicklayout patch, verify — via a
singleinstaller.runcall. - Live X5000 hardware introspection — board / CPU temperatures,
voltages, fan PWM/RPM via the Cyrus MCU, plus CCSR registers, TLB
walks, and IDebug-driven per-task crash snapshots. - Out-of-band power control — with the FTDI USB-TTL cable wired
to the X5000 P18 / A1222 P15 header,power.on/power.off/power.toggle_streamdrive the MCU debug shell directly from
MCP. Works regardless of AOS / MCPd state; the only software
path to boot a fully-off X5000. - Iterate on programs and drivers without power-cycling —
sandbox.*wraps SandboxVM
so a guest segfault no longer takes down the daemon. Edit →
upload → run → read structured exit code + trap classification +
captured stdout/stderr; load.device/.librarydrivers in
resident-init mode and chain a test program against them, all in
a single tool call.
137 typed MCP tools, 8 live resources, validated end-to-end on QEMU
pegasos2 and real AmigaOne X5000 hardware.
If that sounds useful, the rest of this README and the docs below
will help you get going. If not, this probably isn't for you.
Documentation
| Topic | Document |
|---|---|
| What you can do with it | USAGE.md |
| Full command / method / tool reference | COMMANDS.md |
| Installing pre-built artefacts | INSTALL.md |
| Setup spec for AI agents | AGENTS_SETUP.md |
| Building from source | BUILD.md |
| Host server (Python) — quickstart | host/README.md |
| Amiga daemon (C) — quickstart and source layout | mcpd/README.md |
| Change log | CHANGELOG.md |
| Contributing | CONTRIBUTING.md |
| Security policy | SECURITY.md |
| Credits | ACKNOWLEDGEMENTS.md |
| Licence | LICENSE (BSD-3-Clause) |
| Third-party dependencies | THIRD_PARTY_LICENSES.md |
New here? Read USAGE.md for the architecture and tool
surface, then INSTALL.md to install pre-built artefacts
or BUILD.md to build from source.
Overview
MCP-AmigaOS4 is a two-piece system:
amiga-fleet-mcp— a Python MCP server that runs on the user's
workstation. It manages a fleet of one or more AmigaOS 4 targets,
fans out operations across them in parallel, and bridges to QEMU for
lifecycle, snapshots, and GDB.MCPd— a small C daemon running on each AmigaOS 4 target. It
exposes filesystem, process, system, debug, and Workbench operations
as JSON-RPC 2.0 methods over a 4-byte length-prefix framed TCP
connection on port 4322, plus a UDP discovery responder on port 4323.
Capabilities
A summary follows; the full list of tools, resources, methods, and
helper scripts lives in COMMANDS.md, with narrative
context in USAGE.md.
- More than 120 typed MCP tools across
fs.*,exec.cmd,sys.*,wb.*,debug.*,qemu.*,fleet.*,tests.*,events.wait,app.notify,notify.*,installer.*,serial.*,power.*,sandbox.*, andinput.*(keyboard / mouse injection, disabled by
default at the daemon), plus a namespace dispatcher per group.
(events.subscribe,events.unsubscribe, andevents.test_emit
are exposed only as daemon RPC methods, not MCP tools — clients
call them directly through the transport.) - Eight live MCP resources for fleet status, per-target system
snapshots, capability reports, and serial logs. - Parallel multi-target operations (
fleet.run_on_all,fleet.barrier,fleet.quorum_run,fleet.relay) with optional
per-target tag filters. - LAN-local target discovery (UDP broadcast).
- QEMU lifecycle management plus snapshot save/load/list/delete.
- IDebug-driven per-task introspection: register / memory read and
write, symbolicated stack traces, breakpoint control. - Live system-state reporting: CPU model, caches, AttnFlags, resource
probes, mounted volumes, active assigns, library list, public
screens, application registry. - Server-pushed events (
events.subscribe) plus a long-poll
alternative (events.wait). - Auto-start install integration: a single command deploys MCPd to
SYS:System/MCPd/, registers a watchdog wrapper, and patchesS:Network-Startup. Boot-to-bind is approximately eleven seconds on
an AmigaOne X5000. On start the daemon writes a machine-readable[MCPd] ready name=… version=… build_date=… build_time=… port=…
line to the kernel debug ring — readable viasys.debug_ringor aserial.*capture — so a boot-time start is observable even though
the auto-start path sends stdout toNIL:. See
mcpd/README.md. - Per-tool parameter defaults via a
[defaults]block inconfig.toml(dest_volume,sources_dir,machine,iso_filename). Set frequently-repeated values once and skip
them in subsequent tool calls; explicit per-call values always
override. See USAGE.md § Per-tool
defaults. - Native AmigaOS 4.1 FE installer pipeline (
installer.*): preflight,
ISO mount, recursive copy, LHA extraction, Kicklayout patching,
per-machine staged install, and post-install verification. - Host-side serial-capture service (
serial.*): start / stop / tail
background captures of a target's debug UART for kernel-debug
output during boot or crash investigation. - Live X5000 hardware introspection (real-hardware only): Cyrus MCU
supervisor protocol over UART (sys.mcu_cmd), Freescale QorIQ CCSR
reads (sys.read_ccsr), TLB1 dump (sys.tlb_dump), and (with
appropriate care) supervisor-mode physical-address reads
(sys.read_pa).
Supported targets
- QEMU: Pegasos2 (validated end-to-end), AmigaOne, SAM460ex.
- Real hardware: AmigaOne X5000 (validated, Freescale P5020 /
E5500); AmigaOne A1222 / Tabor and AmigaOne X1000 / Nemo are
recognised by board detection but not yet exercised in CI.
See INSTALL.md for runtime requirements per target and
the auto-start install procedure, or BUILD.md for
cross-compiling MCPd from source.
Status
The host server has been driven against an AmigaOne X5000 and a QEMU
pegasos2 guest simultaneously via the fleet fan-out methods, with
auto-start integration validated on both. See
CHANGELOG.md for the change log.
Licence
BSD 3-Clause. Copyright © 2026 Richard Gibbs.
Third-party dependencies retain their own permissive licences; the
full index is in THIRD_PARTY_LICENSES.md.
See ACKNOWLEDGEMENTS.md for credits.
Yorumlar (0)
Yorum birakmak icin giris yap.
Yorum birakSonuc bulunamadi