halo-infinite-mcp vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
halo-infinite-mcp by dend | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 6 | ★ 85,748 |
| 30d uses | — | — |
| Score | 31 | 76 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsMediaOther | Web ScrapingAI / LLM ToolsProductivity |
| Language | C# | TypeScript |
| Last commit | 14 mo ago | this month |
halo-infinite-mcp · Summary
MCP server for Halo Infinite game data, accessing player stats, match history, and marketplace information.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
halo-infinite-mcp · Use cases
- Check your latest match statistics and win rates in Halo Infinite
- Monitor your career rank progress and time to reach Hero level
- Browse current items available on The Exchange marketplace
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
halo-infinite-mcp · Install
Installation
- Install [.NET 9 SDK](https://dotnet.microsoft.com/download/dotnet/9.0)
- Download the [latest release](https://github.com/dend/halo-infinite-mcp/releases)
- Extract the package locally
- Update your MCP client configuration:
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 · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}