ChatSpatial vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ChatSpatial by cafferychen777 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 37 | ★ 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 |
ChatSpatial · Summary
MCP server for spatial transcriptomics analysis through natural language interfaces.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ChatSpatial · Use cases
- Spatial transcriptomics data analysis using natural language prompts
- Reproducible spatial biology workflows across different MCP clients
- Integration of multiple spatial transcriptomics methods through a unified interface
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
ChatSpatial · Install
Installation
Python Installation
pip install chatspatialDocker Installation
docker pull ghcr.io/cafferychen777/chatspatial:v1.2.9Claude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"chatspatial": {
"command": "python",
"args": ["-m", "chatspatial", "run"]
}
}
}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