MCP Catalogs
Home

memory vs infobus-mcp

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

memory
by modelcontextprotocol
infobus-mcp
by simovilab
Stars★ 85,748★ 93
30d uses
Score7741
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
CommunicationProductivityOther
LanguageTypeScriptPython
Last committhis month6 mo ago

memory · Summary

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

infobus-mcp · Summary

MCP server for transit information access through standardized interfaces.

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

infobus-mcp · Use cases

  • AI assistants helping users plan transit trips
  • Real-time transit information queries
  • Natural language processing for transit assistance

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"]
    }
  }
}

infobus-mcp · Install

pip install infobus-mcp

For Claude Desktop:

{
  "mcpServers": {
    "infobus": {
      "command": "python",
      "args": ["-m", "infobus_mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.