MCP Catalogs
Home

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
Score8550
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
AI / LLM ToolsOtherProductivity
LanguagePythonC#
Last commit2 mo agothis 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

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server

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"] } } }

Comparison generated from public README + GitHub signals. Last updated automatically.