spotinfo vs everything
Side-by-side comparison to help you pick between these two MCP servers.
spotinfo by alexei-led | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 161 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Ops & InfraDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | 2 mo ago | this month |
spotinfo · Summary
MCP server for exploring AWS EC2 Spot instance inventory with real-time placement scores, pricing data, and interruption rates.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
spotinfo · Use cases
- DevOps engineers optimizing cloud infrastructure costs by identifying cost-effective Spot instances
- Cloud architects comparing availability and pricing of instance types across regions
- AI assistants helping users find best Spot instance matches for their workload requirements
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
spotinfo · Install
Installation
# macOS with Homebrew
brew tap alexei-led/tap
brew install alexei-led/tap/spotinfo
# Linux/Windows: Download from releases
curl -L https://github.com/alexei-led/spotinfo/releases/latest/download/spotinfo_linux_amd64.tar.gz | tar xz
# Docker
docker pull ghcr.io/alexei-led/spotinfo:latestClaude Desktop Setup
Add to Claude Desktop config.json:
{
"mcpServers": {
"spotinfo": {
"command": "spotinfo",
"args": ["--mcp"]
}
}
}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