MCP Catalogs
Home

STS2MCP vs everything

Side-by-side comparison to help you pick between these two MCP servers.

STS2MCP
by Gennadiyev
everything
by modelcontextprotocol
Stars★ 344★ 85,748
30d uses
Score5077
Official
Categories
AI / LLM ToolsOtherProductivity
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last committhis monththis month

STS2MCP · Summary

MCP server for Slay the Spire 2 that exposes game state and actions for AI agents.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

STS2MCP · Use cases

  • AI agents playing Slay the Spire 2 autonomously
  • Automating repetitive game tasks and grinding
  • Researching AI decision-making in complex game environments

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

STS2MCP · Install

  1. Download the latest release and copy STS2_MCP.dll and STS2_MCP.json to <game_install>/mods/
  2. Launch the game and enable mods in settings
  3. The mod starts an HTTP server on localhost:15526
  4. For MCP server setup, install [uv](https://docs.astral.sh/uv/) and run:

``bash uv run --directory /path/to/STS2_MCP/mcp python server.py ``

  1. Add to Claude Desktop config:

```json { "mcpServers": { "sts2": { "command": "uv", "args": ["run", "--directory", "/path/to/STS2_MCP/mcp", "python", "server.py"] } } }

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.