MCP Catalogs
Home

reddit-mcp-buddy vs memory

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

reddit-mcp-buddy
by karanb192
memory
by modelcontextprotocol
Stars★ 649★ 85,748
30d uses
Score5477
Official
Categories
AI / LLM ToolsBrowser AutomationCommunication
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

reddit-mcp-buddy · Summary

A production-ready MCP server for browsing Reddit with AI assistants, featuring multiple auth tiers and clean data.

memory · Summary

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

reddit-mcp-buddy · Use cases

  • AI assistants browsing Reddit content and discussions in real-time
  • Sentiment analysis across multiple subreddits for trending topics
  • User profile analysis and activity tracking on Reddit

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

reddit-mcp-buddy · Install

For Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "reddit": {
      "command": "npx",
      "args": ["-y", "reddit-mcp-buddy"]
    }
  }
}

For Claude Code

claude mcp add --transport stdio reddit-mcp-buddy -s user -- npx -y reddit-mcp-buddy

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.