ultimate_mcp_server vs STS2MCP
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | STS2MCP by Gennadiyev | |
|---|---|---|
| Stars | ★ 149 | ★ 344 |
| 30d uses | — | — |
| Score | 85 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsOtherProductivity |
| Language | Python | C# |
| Last commit | 2 mo ago | this month |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
STS2MCP · Summary
MCP server for Slay the Spire 2 that exposes game state and actions for AI agents.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverSTS2MCP · 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"] } } }