everything vs spring-ai-playground
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | spring-ai-playground by spring-ai-community | |
|---|---|---|
| Stars | ★ 85,748 | ★ 113 |
| 30天用量 | — | — |
| 综合分 | 77 | 47 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | Java |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
spring-ai-playground · 概述
跨平台桌面应用,用于构建、测试和发布MCP工具,采用'不通过不运行'安全工作流。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
spring-ai-playground · 使用场景
- 开发者在部署前构建带有内置验证的MCP工具
- 团队将MCP工具连接到Python、Node.js或混合环境
- Claude Desktop、Claude Code、Cursor和其他MCP兼容环境用户
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-everythingspring-ai-playground · 安装
安装
桌面应用(推荐)
- 从[GitHub发布页面](https://github.com/spring-ai-community/spring-ai-playground/releases)下载适合您平台的安装程序
- 像普通桌面应用程序一样安装
- 从应用程序菜单启动Spring AI Playground
Docker
docker run -p 8282:8282 -v spring-ai-playground:/root ghcr.io/spring-ai-community/spring-ai-playgroundClaude Desktop配置
添加到您的Claude Desktop配置文件config.json:
{
"mcpServers": {
"spring-ai-playground": {
"command": "java",
"args": ["-jar", "path/to/spring-ai-playground.jar", "--spring.profiles.active=mcp-stdio"]
}
}
}