ultimate_mcp_server vs STAMP
并排对比,帮你在这两个 MCP server 之间做选择。
ultimate_mcp_server by Dicklesworthstone | STAMP by KatherLab | |
|---|---|---|
| Stars | ★ 149 | ★ 119 |
| 30天用量 | — | — |
| 综合分 | 85 | 47 |
| 官方 | — | — |
| 分类 | AI / LLM 工具浏览器自动化本地文件系统 | AI / LLM 工具开发者工具其它 |
| 实现语言 | Python | Python |
| 最近提交 | 2 个月前 | 本月 |
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
STAMP · 概述
STAMP 是一个支持 MCP 的计算病理学工具,用于组织病理图像分析和生物标志物预测。
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
STAMP · 使用场景
- 从组织病理幻灯片中自动发现生物标志物
- 基于病理图像预测患者生存率
- 从组织切片评估疾病活动度
- 从 H&E 染色进行癌症亚型分型
- 乳腺癌患者的风险分层
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_serverSTAMP · 安装
安装
STAMP 需要 [uv](https://docs.astral.sh/uv/) 进行安装。项目支持 CPU 和 GPU 安装,有以下选项:
# 安装 uv
curl -LsSf https://astral.sh/uv/install.sh | sh
# 克隆并设置 STAMP
git clone https://github.com/KatherLab/STAMP.git
cd STAMP
# GPU 安装
uv sync --extra gpu
source .venv/bin/activate
# CPU 安装
uv sync --extra cpu
source .venv/bin/activate对于 Claude Desktop 集成:
{
"mcpServers": {
"stamp": {
"command": "uv",
"args": ["run", "--package", "stamp", "--", "mcp"],
"env": {
"PYTHONPATH": "/path/to/STAMP"
}
}
}
}