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 | — | — |
| Score | 85 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | gamesSearchAI / LLM Tools |
| Language | Python | Go |
| Last commit | 2 mo ago | 1 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
- 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_serverbgg-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
- Install Go from [go.dev/doc/install](https://go.dev/doc/install)
- Build the application:
make build- Add to your MCP config:
"bgg": {
"command": "path/to/build/bgg-mcp",
"args": ["-mode", "stdio"]
}