MCP Catalogs
首页

everything vs h1-brain

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

everything
by modelcontextprotocol
h1-brain
by PatrikFehrenbach
Stars★ 85,748★ 300
30天用量
综合分7751
官方
分类
开发者工具AI / LLM 工具其它
安全开发者工具AI / LLM 工具
实现语言TypeScriptPython
最近提交本月1 个月前

everything · 概述

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

h1-brain · 概述

MCP服务器将AI助手连接到HackerOne,用于漏洞赏金狩猎,整合个人数据和公开报告分析。

everything · 使用场景

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

h1-brain · 使用场景

  • 为特定的HackerOne程序生成全面的攻击简报
  • 搜索和分析个人漏洞赏金历史以识别模式
  • 研究公开披露的报告以了解成功的漏洞类型
  • 识别未受赏金资格限制的资产以进行有针对性的测试

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

h1-brain · 安装

安装

git clone https://github.com/PatrikFehrenbach/h1-brain.git
cd h1-brain
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt

Claude Desktop 配置

添加到 ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "h1-brain": {
      "command": "/path/to/h1-brain/venv/bin/python",
      "args": ["/path/to/h1-brain/server.py"],
      "env": {
        "H1_USERNAME": "your_hackerone_username",
        "H1_API_TOKEN": "your_api_token"
      }
    }
  }
}

保存后重启Claude Desktop。

对比内容由 README + GitHub 公开数据自动生成,定期更新。