Gearsystem vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
Gearsystem by drhelius | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 367 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 52 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具多媒体 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | C++ | TypeScript |
| 最近提交 | 本月 | 本月 |
Gearsystem · 概述
精准的世嘉Master System模拟器,内置MCP服务器支持AI辅助调试。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
Gearsystem · 使用场景
- AI辅助的游戏调试和逆向工程
- AI引导的ROM修改和作弊码制作
- 通过AI代理实现的游戏自动化测试
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
Gearsystem · 安装
安装
**Windows**: 从GitHub下载最新版本 **macOS**: brew install --cask drhelius/geardome/gearsystem **Linux**: Ubuntu/Debian - sudo apt install build-essential libsdl3-dev 然后从源码构建
MCP服务器设置
使用MCP stdio传输启动:
gearsystem --mcp-stdio your_rom.smsClaude Desktop配置
添加到Claude Desktop的config.json:
{
"mcpServers": {
"gearsystem": {
"command": "gearsystem路径",
"args": ["--mcp-stdio"]
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything