MCP Catalogs
首页

STAMP vs everything

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

STAMP
by KatherLab
everything
by modelcontextprotocol
Stars★ 119★ 85,748
30天用量
综合分4777
官方
分类
AI / LLM 工具开发者工具其它
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交本月本月

STAMP · 概述

STAMP 是一个支持 MCP 的计算病理学工具,用于组织病理图像分析和生物标志物预测。

everything · 概述

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

STAMP · 使用场景

  • 从组织病理幻灯片中自动发现生物标志物
  • 基于病理图像预测患者生存率
  • 从组织切片评估疾病活动度
  • 从 H&E 染色进行癌症亚型分型
  • 乳腺癌患者的风险分层

everything · 使用场景

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

STAMP · 安装

安装

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"
      }
    }
  }
}

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