Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

mcp-openmsx-usageMCP openmsx 使用

Agent Skill

mcp-openmsx-usage 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

523

周安装

22

GitHub Stars

54

下载量

183
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mcp-openmsx-usage(MCP openmsx 使用)
来源仓库:https://github.com/nataliapc/mcp-openmsx
仓库路径:skills/mcp-openmsx-usage
安装命令:
npx skills add https://github.com/nataliapc/mcp-openmsx --skill mcp-openmsx-usage
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/nataliapc/mcp-openmsx --skill mcp-openmsx-usage

简介

mcp-openmsx-usage 用于查找、检索和筛选相关信息,支持关键词快速定位。

  • 它适合在 Codex、Claude、Cursor、Gemini CLI 中根据任务场景获取候选结果。
  • 使用 npx skills add 命令从指定仓库安装并调用该技能。
  • 安装前应确认权限范围和维护状态,避免触发不必要的网络请求。
  • 建议优先验证最小权限,防止数据泄露或越权访问。

SKILL.md

MCP-OpenMSX Usage Guide

Skill usage

  • Read this file completely.
  • Read the linked files if topic/description is relevant to your task. Always load reference files if there is even a small chance the content may be required. It's better to have the context than to miss a pattern or make a mistake.

Overview

mcp-openmsx is an MCP server that bridges AI assistants with the openMSX MSX emulator. It spawns openMSX, sending TCL commands via STDIO or HTTP transports.

Typical workflow: launch emulator → insert media → interact (keyboard/BASIC/debug) → capture screen → close.

Prerequisites

  • Node.js >= 18 with npx:

- Windows: install via nodejs.org or winget install OpenJS.NodeJS - macOS: brew install node or the official installer - Linux: use your distro package manager or nvm

  • openMSX emulator installed and accessible (see MCP Configuration for per-OS paths). Set OPENMSX_EXECUTABLE env if not in PATH.
  • mcp-openmsx configured in your MCP client.
  • Set OPENMSX_SHARE_DIR env if auto-detection fails or a custom folder is needed.

Skill Index

  • MCP Configuration: How to configure the MCP server, including transport selection (stdio vs HTTP), emulator executable path, and share directory settings.
  • Environment Variables
  • MCP tools reference:

1. Emulator Control: Manage emulator state (launch, power, reset), media (tapes, ROMs, disks), machine info, keyboard input, savestates, and time-travel replay. 2. VDP (Video Display Processor): Inspect and modify VDP state, including registers, palette, screen mode, and text content. 3. Screen Capture: Capture screenshots, and screen memory dumps from the emulator. 4. Debugging: Control execution (break, continue, step), inspect CPU registers, RAM, and VRAM, manage breakpoints. 5. BASIC Programming: Write, load, run, and manage BASIC programs on the emulator. 6. Documentation & Search: Search and retrieve MSX technical documentation from the embedded vector database and resource library to support development tasks.

  • MCP Resources: Extensive collection of MSX documentation resources and reference materials embedded in the MCP vector database, organized by category and topic for easy retrieval.
  • MCP Prompts: Custom MCP prompts for generating structured reference materials based on the embedded documentation resources, such as an MSX BASIC instruction manual page.
  • Tips & Best Practices

Workflows reference files and guides

Detailed step-by-step guides for common workflows. ALWAYS load reference files if there is even a small chance the content may be required. It's better to have the context than to miss a pattern or make a mistake. Read the relevant file when needed:

  • MSX documentation search workflow — Search and retrieve MSX technical documentation from the embedded vector database and resource library to support development tasks.
  • Launch and configure an MSX machine — Discover machines/extensions, launch, wait for boot, verify status, speed control, power cycle.
  • Programming in MSX BASIC — Write, load, run, verify, and manage BASIC programs. Includes line management, interrupting, and loading large programs.
  • Debugging the VDP — Inspect/modify VDP registers, palette, VRAM, screen modes. Includes sprite debugging and screen corruption analysis workflows.
  • Debugging a BASIC program — Interrupt execution, inspect state, edit lines, low-level interpreter debugging, time-travel, infinite loop detection, variable inspection.
  • Debugging an ASM program — Breakpoints, stepping, register/memory inspection, disassembly, BIOS call verification, crash/hang analysis, locating functions without.sym files.
  • Debugging MSX-DOS programs — Correct breakpoint workflow for MSX-DOS disk-loaded programs. Avoids boot contamination (BIOS/DOS firing breakpoints before app starts). Includes hang detection and savestate checkpointing.
  • Working with media (ROM, disk, tape) — Insert/eject ROMs, disks, tapes. Development workflows for each media type.
  • Time-travel debugging with replay and savestates — Timeline navigation, frame-by-frame stepping, checkpointing, comparing execution paths.
  • Screen capture and visual verification — Screenshots (inline/file), screen dumps (MSX format), text reading, before/after comparison.

Tips & Best Practices

  • Use always \r (CR) as line terminators in BASIC programs. Avoid \n (LF) or \r\n (CRLF) to prevent parsing issues.
  • Always fetch the documentation of every BASIC command you use with the BASIC Wiki resource or vector_db_query to ensure correct syntax, parameters, and behaviors.
  • All addresses and values use hexadecimal format (e.g. 0x4000, 0xA5).
  • Always emu_control.wait a few seconds after launch to let the machine fully boot before interacting.
  • Use screen_shot.as_image to visually verify emulator state at any point.
  • Use debug_run.break before emu_replay.goBack or absoluteGoto to keep the timeline stable.
  • Use vector_db_query to search MSX documentation before relying on general knowledge.
  • Use basic_programming tools instead of emu_keyboard.sendText for BASIC development — they handle speed optimization and input encoding automatically.
  • Use emu_savestates to checkpoint progress during complex debugging sessions.
  • Addresses from .sym/.map files can be used directly with debug_breakpoints.create and debug_run.runTo.
  • MSX-DOS programs: never set breakpoints before confirming the app is on screen — the BIOS/DOS boot fires them first. See Debugging MSX-DOS Programs.
  • CP437 character encoding is the nearest encoding for MSX international charmap, use it for text input/output. Be mindful of special characters.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.11%
按下载量换算70

Claude

30.24%
按下载量换算55

Cursor

20.19%
按下载量换算37

Gemini CLI

8.64%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills