MCP Catalogs
Home

ultimate_mcp_server vs bgg-mcp

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

ultimate_mcp_server
by Dicklesworthstone
bgg-mcp
by kkjdaniel
Stars★ 149★ 40
30d uses
Score8545
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
gamesSearchAI / LLM Tools
LanguagePythonGo
Last commit2 mo ago1 mo ago

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.

bgg-mcp · Summary

BGG MCP provides BoardGameGeek API access through MCP with tools for searching, collections, pricing, and recommendations.

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

bgg-mcp · Use cases

  • Board game enthusiasts researching game details and prices
  • Users analyzing their game collections and finding trading opportunities
  • Game masters seeking recommendations similar to specific titles

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

bgg-mcp · Install

Installation

Docker (Recommended)

"bgg": {
    "command": "docker",
    "args": ["run", "-i", "--rm",
        "-e", "BGG_API_KEY",
        "-e", "BGG_USERNAME",
        "kdaniel/bgg-mcp"
    ],
    "env": {
        "BGG_API_KEY": "your_api_key_here",
        "BGG_USERNAME": "your_bgg_username"
    }
}

Manual Setup

  1. Install Go from [go.dev/doc/install](https://go.dev/doc/install)
  2. Build the application:
make build
  1. Add to your MCP config:
"bgg": {
    "command": "path/to/build/bgg-mcp",
    "args": ["-mode", "stdio"]
}
Comparison generated from public README + GitHub signals. Last updated automatically.