Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP server that wraps the Bobbin Apple II emulator, providing tools for memory access, screen reading, BASIC program execution, and disk image management to enable autonomous experimentation with Apple II control techniques.

README.md

Apple II MCP Server

An MCP server for autonomous experimentation with Apple II control techniques via the Bobbin emulator.

Overview

This MCP server wraps the Bobbin Apple II emulator, providing tools for:

  • Memory read/write access
  • Screen reading
  • BASIC program tokenization and injection
  • Knowledge base for recording discovered techniques

Installation

pip install -e .

Usage

Configure in your Claude MCP settings:

{
  "mcpServers": {
    "apple2": {
      "command": "apple2-mcp"
    }
  }
}

Tools

Machine Control

  • boot - Start the Apple II emulator (Apple II+ or //e)
  • shutdown - Stop the emulator
  • reset - Warm or cold reset

Memory Access

  • peek / poke - Read/write memory
  • load_binary - Load binary data from hex string

Screen & Graphics

  • read_screen - Get 40x24 text display
  • capture_gr / read_gr_ascii - Lo-res graphics (40x48, 16 colors)
  • capture_hgr / read_hgr_ascii - Hi-res graphics (280x192)
  • capture_dgr / read_dgr_ascii - Double lo-res (80x48, //e only)
  • capture_dhgr / read_dhgr_ascii - Double hi-res (560x192, //e only)
  • clear_gr - Clear lo-res screen to solid color
  • clear_hgr - Clear hi-res screen to black

Input

  • type_text - Type into the emulator
  • send_key - Send special keys (RETURN, ESCAPE, CTRL-C, CTRL-RESET)

BASIC Execution

  • run_basic - Execute BASIC command and wait for prompt
  • run_and_capture - Run program and capture screen automatically
  • send_keys_and_capture - Send keys to interactive program, then capture

Tokenization

  • type_and_capture - Type BASIC and see tokenization
  • tokenize - Tokenize BASIC source using Bobbin
  • compare_tokenization - Compare against native Apple II tokenization
  • inject_tokenized_basic - Direct memory injection

Disk Image Tools

  • create_disk - Create new DOS 3.3 disk image
  • disk_catalog - List files on disk image
  • save_basic_to_disk - Save BASIC source to disk (auto-tokenizes)
  • save_file_to_disk - Save .bas file to disk

Observation

  • get_registers - Get 6502 CPU register state
  • get_basic_pointers - Get BASIC memory pointers

Knowledge Base

  • record_technique / query_techniques - Save and search techniques

Requirements

  • Python 3.10+
  • Bobbin emulator (compiled)
  • pexpect
  • mcp

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.