MCP Catalogs
首页

Gearboy vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

Gearboy
by drhelius
everything
by modelcontextprotocol
Stars★ 1,130★ 85,748
30天用量
综合分5377
官方
分类
多媒体开发者工具AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言C++TypeScript
最近提交本月本月

Gearboy · 概述

Game Boy模拟器,内置MCP服务器,支持AI辅助调试和ROM分析。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

Gearboy · 使用场景

  • 使用内存检查和断点工具进行Game Boy游戏的AI辅助调试
  • 通过反汇编和代码跟踪功能进行ROM逆向工程
  • 使用内存搜索和分析功能创建游戏作弊和修改ROM

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

Gearboy · 安装

安装

可以从[发布页面](https://github.com/drhelius/Gearboy/releases)下载Windows、macOS和Linux的预构建二进制文件。

要使用MCP服务器:

  1. 使用以下选项之一启动Gearboy:

- --mcp-stdio - 自动启动带有stdio传输的MCP服务器 - --mcp-http - 自动启动带有HTTP传输的MCP服务器 - --mcp-http-port N - 指定HTTP端口(默认:7777)

  1. 对于Claude Desktop集成,将以下内容添加到你的claude_desktop_config.json中:
{
  "mcpServers": {
    "gearboy": {
      "command": "path/to/gearboy",
      "args": ["--mcp-stdio"]
    }
  }
}

或者,使用--headless选项可以在使用MCP时无GUI运行。

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
对比内容由 README + GitHub 公开数据自动生成,定期更新。