← Back to Plugins
MCP Server MCP

C64 Bridge

github By github 👁 1 views ▲ 0 votes

MCP server for Commodore 64 Ultimate hardware and VICE emulator control.

Homepage Verified source GitHub

Install

npx -y [email protected]

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "npm",
      "identifier": "c64bridge",
      "version": "1.0.2",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "description": "Logger verbosity.",
          "format": "string",
          "default": "info",
          "choices": [
            "debug",
            "info",
            "warn",
            "error"
          ],
          "name": "LOG_LEVEL"
        },
        {
          "description": "Path to the C64 Bridge configuration file.",
          "format": "filepath",
          "default": "~/.c64bridge.json",
          "name": "C64BRIDGE_CONFIG"
        },
        {
          "description": "Active backend.",
          "format": "string",
          "default": "c64u",
          "choices": [
            "c64u",
            "vice"
          ],
          "name": "C64_MODE"
        },
        {
          "description": "Ultimate 64 host name or IP address.",
          "format": "string",
          "default": "c64u",
          "name": "C64U_HOST"
        },
        {
          "description": "Ultimate 64 REST port.",
          "format": "number",
          "default": "80",
          "name": "C64U_PORT"
        },
        {
          "description": "Ultimate 64 network password sent as X-Password.",
          "format": "string",
          "isSecret": true,
          "name": "C64U_PASSWORD"
        },
        {
          "description": "VICE emulator binary to launch.",
          "format": "string",
          "default": "x64sc",
          "name": "VICE_BINARY"
        },
        {
          "description": "Launch VICE with a visible window when possible.",
          "format": "boolean",
          "default": "true",
          "name": "VICE_VISIBLE"
        },
        {
          "description": "Enable VICE warp mode.",
          "format": "boolean",
          "default": "false",
          "name": "VICE_WARP"
        },
        {
          "description": "GitHub token for optional RAG discovery against GitHub.",
          "format": "string",
          "isSecret": true,
          "name": "GITHUB_TOKEN"
        }
      ]
    }
  ]
}
mcp model-context-protocol npm

Comments

Sign in to leave a comment

Loading comments...