ultimate_mcp_server vs spring-ai-playground
并排对比,帮你在这两个 MCP server 之间做选择。
ultimate_mcp_server by Dicklesworthstone | spring-ai-playground by spring-ai-community | |
|---|---|---|
| Stars | ★ 149 | ★ 113 |
| 30天用量 | — | — |
| 综合分 | 85 | 47 |
| 官方 | — | — |
| 分类 | AI / LLM 工具浏览器自动化本地文件系统 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | Python | Java |
| 最近提交 | 2 个月前 | 本月 |
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
spring-ai-playground · 概述
跨平台桌面应用,用于构建、测试和发布MCP工具,采用'不通过不运行'安全工作流。
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
spring-ai-playground · 使用场景
- 开发者在部署前构建带有内置验证的MCP工具
- 团队将MCP工具连接到Python、Node.js或混合环境
- Claude Desktop、Claude Code、Cursor和其他MCP兼容环境用户
ultimate_mcp_server · 安装
安装
- 克隆仓库:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- 安装依赖:
pip install -e .- 对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- 运行服务器:
python -m ultimate_mcp_serverspring-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"]
}
}
}