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 | — | — |
| Score | 31 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsMediaOther | Knowledge GraphAI / 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.
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
- 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": {}
}
}
}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"]
}
}
}