MCP Catalogs
首页

ai-testing-mcp vs everything

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

ai-testing-mcp
by groovy-web
everything
by modelcontextprotocol
Stars★ 18★ 85,748
30天用量
综合分4377
官方
分类
AI / LLM 工具开发者工具可观测性
开发者工具AI / LLM 工具其它
实现语言TypeScript
最近提交2 个月前本月

ai-testing-mcp · 概述

全面的MCP服务器,提供AI测试、评估和质量保证的标准化方法。

everything · 概述

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

ai-testing-mcp · 使用场景

  • 开发流水线中的AI模型验证和质量保证
  • 针对提示注入和对抗性攻击的自动化安全测试
  • AI系统的性能基准测试和优化

everything · 使用场景

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

ai-testing-mcp · 安装

# 克隆仓库
git clone https://github.com/groovy-web/ai-testing-mcp.git
cd ai-testing-mcp

# 安装依赖
npm install

# 配置环境
cp .env.example .env
# 编辑您的API密钥

# 启动MCP服务器
npm start

添加到Claude Desktop配置中:

{
  "mcpServers": {
    "ai-testing": {
      "command": "node",
      "args": ["/path/to/ai-testing-mcp/dist/index.js"],
      "env": {
        "OPENAI_API_KEY": "your-key",
        "ANTHROPIC_API_KEY": "your-key"
      }
    }
  }
}

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 公开数据自动生成,定期更新。