MCP Catalogs
Home

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
Score5077
Official
Categories
Ops & InfraDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last commit2 mo agothis 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:latest

Claude 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
Comparison generated from public README + GitHub signals. Last updated automatically.