MCP Catalogs
Home

halo-infinite-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

halo-infinite-mcp
by dend
everything
by modelcontextprotocol
Stars★ 6★ 85,748
30d uses
Score3177
Official
Categories
AI / LLM ToolsMediaOther
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last commit14 mo agothis month

halo-infinite-mcp · Summary

MCP server for Halo Infinite game data, accessing player stats, match history, and marketplace information.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

halo-infinite-mcp · Install

Installation

  1. Install [.NET 9 SDK](https://dotnet.microsoft.com/download/dotnet/9.0)
  2. Download the [latest release](https://github.com/dend/halo-infinite-mcp/releases)
  3. Extract the package locally
  4. 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": {}
        }
    }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.