halo-infinite-mcp vs fetch
并排对比,帮你在这两个 MCP server 之间做选择。
halo-infinite-mcp by dend | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 6 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 31 | 76 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具多媒体其它 | 网页抓取AI / LLM 工具效率工具 |
| 实现语言 | C# | TypeScript |
| 最近提交 | 14 个月前 | 本月 |
halo-infinite-mcp · 概述
为《光环无限》游戏数据提供的 MCP 服务器,可访问玩家统计、比赛记录和市场信息。
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
halo-infinite-mcp · 使用场景
- 查看《光环无限》最新比赛统计和胜率
- 监控生涯等级进度和达到英雄等级所需时间
- 浏览当前交易所市场可用物品
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
halo-infinite-mcp · 安装
安装
- 安装 [.NET 9 SDK](https://dotnet.microsoft.com/download/dotnet/9.0)
- 下载[最新版本](https://github.com/dend/halo-infinite-mcp/releases)
- 在本地解压包
- 更新您的 MCP 客户端配置:
Claude Desktop
"mcpServers": {
"mcp-halo-infinite": {
"command": "PATH_TO_YOUR_OpenSpartan.Forerunner.MCP.exe",
"args": [],
"env": {}
}
}Visual Studio Code (Insiders 版)
"mcp": {
"inputs": [],
"servers": {
"mcp-halo-infinite": {
"command": "PATH_TO_YOUR_OpenSpartan.Forerunner.MCP.exe",
"args": [],
"env": {}
}
}
}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"]
}
}
}