MCP Catalogs
Home

mcpdog vs memory

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

mcpdog
by kinhunt
memory
by modelcontextprotocol
Stars★ 18★ 85,748
30d uses
Score4077
Official
Categories
Developer ToolsMonitoringProductivity
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last commit7 mo agothis month

mcpdog · Summary

Universal MCP Server Manager providing single interface to configure and manage multiple MCP servers with web dashboard.

memory · Summary

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

mcpdog · Use cases

  • Managing multiple MCP servers in development environments without complex client configurations
  • Centralizing MCP server management for teams across different AI assistants
  • Monitoring and troubleshooting MCP servers with real-time metrics and logs

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

mcpdog · Install

Quick Start with Claude Desktop

  1. Install MCPDog globally:
npm install -g mcpdog
  1. Configure Claude Desktop:
{
  "mcpServers": {
    "mcpdog": {
      "command": "npx",
      "args": ["mcpdog@latest"]
    }
  }
}
  1. Access the web dashboard at http://localhost:38881 to add and configure MCP servers.

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.