
BoardGameGeek MCP Server
An MCP server that integrates with the BoardGameGeek XML API, allowing Claude to search for board games, retrieve game details, and access user collections.
README
BoardGameGeek MCP Server
This is a Model Context Protocol (MCP) server that integrates with the BoardGameGeek XML API, allowing Claude to search for board games, retrieve game details, get user collections, and more.
Features
This server provides the following tools:
- search-games: Search for board games by name
- get-game-details: Get detailed information about a specific board game
- get-user-collection: Get a user's board game collection with filtering options
- get-hot-games: Get the current hottest board games on BoardGameGeek
- get-user-plays: Get a user's recent board game plays
- get-similar-games: Get games similar to a specified game
- sync-user-collection: Synchronize a user's collection from BoardGameGeek
- sync-user-plays: Synchronize a user's plays from BoardGameGeek
Prerequisites
- Node.js 22.5.0 or higher (required for experimental SQLite support)
- npm (for dependency management)
Building and Running
To build the server:
# Install dependencies
npm install
# Build the TypeScript code
npm run build
To run the server directly:
# The --experimental-sqlite flag is required
node --experimental-sqlite build/index.js
To run with Docker:
# Build the Docker image
docker build -t bgg-mcp-server .
# Run the container
docker run --rm -i bgg-mcp-server
Testing
To verify the server is working correctly:
# Make sure the server is built first
npm run build
# Run the test script
node test-direct.js
The test script will:
- Start the MCP server
- Test the search-games functionality
- Test the get-hot-games functionality
- Display results and any errors
Using with Claude for Desktop
-
Open your Claude for Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
-
Add the server configuration for direct Node.js execution:
{
"mcpServers": {
"boardgamegeek": {
"command": "node",
"args": ["--experimental-sqlite", "/path/to/bgg-mcp-server/build/index.js"]
}
}
}
- Or use Docker (recommended):
{
"mcpServers": {
"boardgamegeek": {
"command": "bash",
"args": ["-c", "cd /path/to/bgg-mcp-server && docker build -t bgg-mcp-server . && docker run --rm -i bgg-mcp-server"]
}
}
}
- Restart Claude for Desktop
Example Questions
Once connected to Claude, you can ask questions like:
- "Find board games similar to Pandemic"
- "What are the top 10 hottest games on BoardGameGeek right now?"
- "Show me the details of Catan"
- "What games are in user 'TomVasel's collection?"
- "What games has user 'dice_tower' played recently?"
- "Find games similar to Catan"
- "Sync my collection from BGG username 'example'"
Data Storage
The server uses SQLite for data persistence. All retrieved game data, user collections, and play history are stored in the data/bgg.sqlite
database file. This:
- Reduces API calls to BoardGameGeek
- Improves response times for repeated queries
- Maintains data between server restarts
The database is automatically created if it doesn't exist and will be populated as you use the server.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.