MCP Catalogs
Home

mcp-reddit vs memory

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

mcp-reddit
by adhikasp
memory
by modelcontextprotocol
Stars★ 400★ 85,748
30d uses
Score4477
Official
Categories
social-mediaWeb ScrapingAI / LLM Tools
Knowledge GraphAI / LLM ToolsProductivity
LanguagePythonTypeScript
Last commit12 mo agothis month

mcp-reddit · Summary

MCP server for fetching and analyzing Reddit content with support for different post types.

memory · Summary

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

mcp-reddit · Use cases

  • Content researchers gathering discussions from specific subreddits
  • Social media analysts tracking trends and sentiment
  • Community managers monitoring mentions and feedback

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

mcp-reddit · Install

Installing via Smithery

npx -y @smithery/cli install @adhikasp/mcp-reddit --client claude

Manual Installation

{
  "reddit": {
    "command": "uvx",
    "args": ["--from", "git+https://github.com/adhikasp/mcp-reddit.git", "mcp-reddit"],
    "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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.