MCP Catalogs
Home

codebadger vs memory

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

codebadger
by Lekssays
memory
by modelcontextprotocol
Stars★ 102★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsSecurityKnowledge Graph
Knowledge GraphAI / LLM ToolsProductivity
LanguagePythonTypeScript
Last commit1 mo agothis month

codebadger · Summary

Containerized MCP server for static code analysis using Joern's CPG with multi-language support.

memory · Summary

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

codebadger · Use cases

  • Security vulnerability detection in codebases
  • Code analysis and understanding of large projects
  • Integration with LLM assistants for program analysis

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

codebadger · Install

Installation

  1. Install prerequisites:

```bash # Docker and Docker Compose docker --version docker-compose --version

# Python 3.10+ python --version ```

  1. Install Python dependencies:

``bash python -m venv venv pip install -r requirements.txt ``

  1. Start Joern Docker services:

``bash docker compose up -d ``

  1. Start the MCP server:

``bash python main.py ``

Claude Desktop Integration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "codebadger": {
      "url": "http://localhost:4242/mcp",
      "type": "http"
    }
  }
}

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.