MCP Catalogs
Home

halo-infinite-mcp vs memory

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

halo-infinite-mcp
by dend
memory
by modelcontextprotocol
Stars★ 6★ 85,748
30d uses
Score3177
Official
Categories
AI / LLM ToolsMediaOther
Knowledge GraphAI / LLM ToolsProductivity
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.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

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

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

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

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

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

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

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

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.