MCP Catalogs
首页bgg-mcp screenshot

bgg-mcp

by kkjdaniel·40·综合分 45

BGG MCP 通过 MCP 提供 BoardGameGeek API 访问,包含搜索、收藏、价格和推荐等功能工具。

gamessearchai-llm
11
Forks
0
活跃 Issue
1 个月前
最近提交
2 天前
收录于

概述

BGG MCP 是一个基于 Go 的服务器,通过模型上下文协议提供对 BoardGameGeek API 的全面访问。它提供搜索游戏、检索详细信息、查询用户收藏、获取热门列表、检查价格、寻找交易机会、获取游戏推荐和访问论坛帖子的工具。服务器与 BoardGamePrices.co.uk 和 Recommend.Games 集成,提供价格数据和算法推荐。它包含核心和实验性工具,以及针对常见工作流程的预配置提示。

试试问 AI

装完之后,这里有 3 个你可以让 AI 做的事:

:桌游爱好者研究游戏细节和价格
:用户分析自己的游戏收藏并寻找交易机会
:桌游主持人寻找与特定游戏类似的游戏推荐

什么时候选它

如果您是桌游爱好者,希望将 BGG 数据集成到 AI 工作流程中进行收藏管理、交易或研究,请选择 BGG MCP。

什么时候不要选它

如果您需要广泛的 BGG 写入功能,请避免使用,因为此服务器主要是只读的,或者如果您更倾向于使用 Go 以外的语言来实现 MCP 服务器。

此 server 暴露的工具

从 README 抽取出 10 个工具
  • bgg-search

    Search for board games with type filtering (base games, expansions, or all)

  • bgg-details

    Get detailed information about a specific board game

  • bgg-collection

    Query and filter a user's game collection with extensive filtering options

  • bgg-hot

    Get the current BGG hotness list

  • bgg-user

    Get user profile information

  • bgg-price

    Get current prices from multiple retailers using BGG IDs

  • bgg-trade-finder

    Find trading opportunities between two BGG users

  • bgg-recommender

    Get game recommendations based on similarity to a specific game

  • bgg-thread-details

    Get the full content of a specific BGG forum thread including all posts

  • bgg-rules

    Answer rules questions by searching BGG forums for relevant discussions

可对比工具

boardgamegeek-apiboardgamegeek-rsgeekdo-rs

安装

安装

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

手动设置

  1. 从 [go.dev/doc/install](https://go.dev/doc/install) 安装 Go
  2. 构建应用程序:
make build
  1. 添加到您的 MCP 配置中:
"bgg": {
    "command": "path/to/build/bgg-mcp",
    "args": ["-mode", "stdio"]
}

bgg-mcp 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。