STAMP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
STAMP by KatherLab | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 119 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
STAMP · Summary
STAMP is a computational pathology tool with MCP support for histopathology image analysis and biomarker prediction.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
STAMP · Use cases
- Automating biomarker discovery from histopathology slides
- Predicting patient survival based on pathology images
- Assessing disease activity from tissue sections
- Cancer subtyping from H&E stains
- Risk stratification in breast cancer patients
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
STAMP · Install
Installation
STAMP requires [uv](https://docs.astral.sh/uv/) for installation. The project supports both CPU and GPU installations with multiple options:
# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
# Clone and setup STAMP
git clone https://github.com/KatherLab/STAMP.git
cd STAMP
# GPU installation
uv sync --extra gpu
source .venv/bin/activate
# CPU installation
uv sync --extra cpu
source .venv/bin/activateFor Claude Desktop integration:
{
"mcpServers": {
"stamp": {
"command": "uv",
"args": ["run", "--package", "stamp", "--", "mcp"],
"env": {
"PYTHONPATH": "/path/to/STAMP"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything