mcp-server-playground vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-playground by chrisleekr | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 7 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 41 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具安全 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
mcp-server-playground · 概述
TypeScript 构建的 MCP 服务器,支持 HTTP 传输和 OAuth 代理,提供 AWS 服务、系统操作和数据流工具。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-server-playground · 使用场景
- 构建需要第三方提供者 OAuth 认证的安全 MCP 服务器
- 使用 Valkey 在分布式部署中实现有状态 MCP 会话
- 创建用于 AWS 服务调查和 AI 分析监控的工具
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-server-playground · 安装
安装步骤
- 克隆仓库:
git clone <your-repo>
cd mcp-server-playground- 安装 Bun(如果尚未安装):
curl -fsSL https://bun.sh/install | bash- 安装依赖:
bun install- 设置环境变量:
cp .env.example .env- 设置本地开发环境的 MCP 服务器:
bun run dev:setupClaude Desktop 配置
添加到您的 Claude Desktop config.json 文件:
{
"mcpServers": {
"mcp-server-playground": {
"command": "bun",
"args": ["run", "start"],
"env": {
"PORT": "3000"
}
}
}
}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