zesarux-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@zesarux-mcpload tape games/jetpac.tap and execute"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ZEsarUX MCP Server
MCP server for ZEsarUX ZX Spectrum emulator using ZRCP protocol.
dtz-labs - Vibe coding 8-bit machines like there is no tomorrow
Features
13 tool categories with 50+ operations: machine control, PEEK/POKE, debugging (breakpoints, registers, disassembly), tape/disk loading, snapshots, keyboard input, assembly, and more.
Related MCP server: mcp-pine
Quick Start
1. Install ZEsarUX
macOS:
brew install zesaruxLinux:
sudo apt-get install zesaruxOr download from: ZEsarUX releases
2. Start ZEsarUX with ZRCP
zesarux --enable-remoteprotocol --remoteprotocol-port 100003. Install the MCP Server
The server is published to npm as @dtz-labs/zesarux-mcp — no clone or build needed. Your MCP client launches it on demand via npx; nothing to install globally.
git clone https://github.com/dtz-labs/zesarux-mcp.git
cd zesarux-mcp
npm install
npm run build # produces dist/index.jsThen point your config at "command": "node", "args": ["/absolute/path/to/zesarux-mcp/dist/index.js"].
4. Configure your MCP client
Claude Code — one command:
claude mcp add zesarux -- npx -y @dtz-labs/zesarux-mcp…or commit a project-scoped .mcp.json to your repo:
{
"mcpServers": {
"zesarux": {
"command": "npx",
"args": ["-y", "@dtz-labs/zesarux-mcp"],
"env": {
"ZESARUX_HOST": "localhost",
"ZESARUX_PORT": "10000",
"LOG_LEVEL": "info"
}
}
}
}Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"zesarux": {
"command": "npx",
"args": ["-y", "@dtz-labs/zesarux-mcp"],
"env": { "ZESARUX_HOST": "localhost", "ZESARUX_PORT": "10000" }
}
}
}Restart Claude and the tools will be available.
Environment variables
Variable | Default | Description |
|
| Host where ZEsarUX ZRCP is listening |
|
| ZRCP port (matches |
|
|
|
|
| ZRCP request timeout, ms |
|
| Connection retry attempts |
|
| Reconnect automatically if the link drops |
Documentation
Full Documentation - Detailed setup, all tools, examples
ZRCP Specification - Complete protocol reference
Quick Examples
// Reset and set machine
{"name": "reset_machine"}
{"name": "set_machine", "arguments": {"machine": "spectrum128"}}
// Read/write memory
{"name": "peek", "arguments": {"address": "4000", "length": 256}}
{"name": "poke", "arguments": {"address": "4000", "value": [255, 0]}}
// Debugging
{"name": "get_registers"}
{"name": "set_breakpoint", "arguments": {"address": "8000"}}
// Load tape
{"name": "load_file", "arguments": {"filename": "/path/game.tap"}}License
MIT
dtz-labs - Keeping 8-bit alive until 2065
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/dtz-labs/zesarux-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server