AgentHubAgentHub

C64 Bridge

MCP ServerMCP Registry官方收录

io.github.chrisgleissner/c64bridge · v0.9.2

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

概览

C64 Bridge 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "c64bridge": {
      "command": "npx",
      "args": [
        "-y",
        "c64bridge"
      ]
    }
  }
}

环境变量

LOG_LEVEL可选

Logger verbosity.

C64BRIDGE_CONFIG可选

Path to the C64 Bridge configuration file.

C64_MODE可选

Active backend.

C64U_HOST可选

Ultimate 64 host name or IP address.

C64U_PORT可选

Ultimate 64 REST port.

C64U_PASSWORD可选secret

Ultimate 64 network password sent as X-Password.

VICE_BINARY可选

VICE emulator binary to launch.

VICE_VISIBLE可选

Launch VICE with a visible window when possible.

VICE_WARP可选

Enable VICE warp mode.

GITHUB_TOKEN可选secret

GitHub token for optional RAG discovery against GitHub.

相关资源

统一 Manifest

{
  "id": "io.github.chrisgleissner/c64bridge",
  "type": "mcp-server",
  "version": "0.9.2",
  "displayName": "C64 Bridge",
  "description": "MCP server for Commodore 64 Ultimate hardware and VICE emulator control.",
  "repository": {
    "url": "https://github.com/chrisgleissner/c64bridge",
    "source": "github"
  },
  "homepage": "https://github.com/chrisgleissner/c64bridge",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "c64bridge",
        "version": "0.9.2",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "LOG_LEVEL",
            "description": "Logger verbosity."
          },
          {
            "name": "C64BRIDGE_CONFIG",
            "description": "Path to the C64 Bridge configuration file."
          },
          {
            "name": "C64_MODE",
            "description": "Active backend."
          },
          {
            "name": "C64U_HOST",
            "description": "Ultimate 64 host name or IP address."
          },
          {
            "name": "C64U_PORT",
            "description": "Ultimate 64 REST port."
          },
          {
            "name": "C64U_PASSWORD",
            "description": "Ultimate 64 network password sent as X-Password.",
            "isSecret": true
          },
          {
            "name": "VICE_BINARY",
            "description": "VICE emulator binary to launch."
          },
          {
            "name": "VICE_VISIBLE",
            "description": "Launch VICE with a visible window when possible."
          },
          {
            "name": "VICE_WARP",
            "description": "Enable VICE warp mode."
          },
          {
            "name": "GITHUB_TOKEN",
            "description": "GitHub token for optional RAG discovery against GitHub.",
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.chrisgleissner/c64bridge",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.chrisgleissner%2Fc64bridge/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
C64 Bridge — MCP Server 安装与配置 · AgentHub