bgg-mcp vs fetch
并排对比,帮你在这两个 MCP server 之间做选择。
bgg-mcp by kkjdaniel | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 40 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 45 | 76 |
| 官方 | — | ✓ |
| 分类 | games搜索AI / LLM 工具 | 网页抓取AI / LLM 工具效率工具 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
bgg-mcp · 概述
BGG MCP 通过 MCP 提供 BoardGameGeek API 访问,包含搜索、收藏、价格和推荐等功能工具。
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
bgg-mcp · 使用场景
- 桌游爱好者研究游戏细节和价格
- 用户分析自己的游戏收藏并寻找交易机会
- 桌游主持人寻找与特定游戏类似的游戏推荐
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
bgg-mcp · 安装
安装
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"]
}fetch · 安装
安装
**使用uv(推荐)** 无需特定安装。使用uvx直接运行服务器:
uvx mcp-server-fetch**使用PIP** 通过pip安装:
pip install mcp-server-fetch然后运行:
python -m mcp_server_fetchClaude桌面配置
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}