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 | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsOtherProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | C# | TypeScript |
| Last commit | this month | this 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
- Download the latest release and copy
STS2_MCP.dllandSTS2_MCP.jsonto<game_install>/mods/ - Launch the game and enable mods in settings
- The mod starts an HTTP server on
localhost:15526 - 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 ``
- 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