
bgg-mcp
by kkjdaniel·★ 40·综合分 45
BGG MCP 通过 MCP 提供 BoardGameGeek API 访问,包含搜索、收藏、价格和推荐等功能工具。
概述
BGG MCP 是一个基于 Go 的服务器,通过模型上下文协议提供对 BoardGameGeek API 的全面访问。它提供搜索游戏、检索详细信息、查询用户收藏、获取热门列表、检查价格、寻找交易机会、获取游戏推荐和访问论坛帖子的工具。服务器与 BoardGamePrices.co.uk 和 Recommend.Games 集成,提供价格数据和算法推荐。它包含核心和实验性工具,以及针对常见工作流程的预配置提示。
试试问 AI
装完之后,这里有 3 个你可以让 AI 做的事:
什么时候选它
如果您是桌游爱好者,希望将 BGG 数据集成到 AI 工作流程中进行收藏管理、交易或研究,请选择 BGG MCP。
什么时候不要选它
如果您需要广泛的 BGG 写入功能,请避免使用,因为此服务器主要是只读的,或者如果您更倾向于使用 Go 以外的语言来实现 MCP 服务器。
此 server 暴露的工具
从 README 抽取出 10 个工具bgg-searchSearch for board games with type filtering (base games, expansions, or all)
bgg-detailsGet detailed information about a specific board game
bgg-collectionQuery and filter a user's game collection with extensive filtering options
bgg-hotGet the current BGG hotness list
bgg-userGet user profile information
bgg-priceGet current prices from multiple retailers using BGG IDs
bgg-trade-finderFind trading opportunities between two BGG users
bgg-recommenderGet game recommendations based on similarity to a specific game
bgg-thread-detailsGet the full content of a specific BGG forum thread including all posts
bgg-rulesAnswer rules questions by searching BGG forums for relevant discussions
可对比工具
安装
安装
Docker(推荐)
"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"
}
}手动设置
- 从 [go.dev/doc/install](https://go.dev/doc/install) 安装 Go
- 构建应用程序:
make build- 添加到您的 MCP 配置中:
"bgg": {
"command": "path/to/build/bgg-mcp",
"args": ["-mode", "stdio"]
}bgg-mcp 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。