MCP Catalogs
Home

bgg-mcp vs fetch

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

bgg-mcp
by kkjdaniel
fetch
by modelcontextprotocol
Stars★ 40★ 85,748
30d uses
Score4576
Official
Categories
gamesSearchAI / LLM Tools
Web ScrapingAI / LLM ToolsProductivity
LanguageGoTypeScript
Last commit1 mo agothis month

bgg-mcp · Summary

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

fetch · Summary

An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.

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

fetch · Use cases

  • LLMs reading news articles and blogs
  • Content analysis of web pages
  • Retrieving information from public websites
  • Chunked reading of large web documents

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

fetch · Install

Installation

**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:

uvx mcp-server-fetch

**Using PIP** Install via pip:

pip install mcp-server-fetch

Then run as:

python -m mcp_server_fetch

Claude Desktop Configuration

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.