reddit-mcp vs memory
Side-by-side comparison to help you pick between these two MCP servers.
reddit-mcp by Arindam200 | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 285 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | social-mediaWeb ScrapingAI / LLM Tools | Knowledge GraphAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 5 mo ago | this month |
reddit-mcp · Summary
MCP server providing access to Reddit data through PRAW API, with both read-only and authenticated functionality.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
reddit-mcp · Use cases
- Social media content analysis and engagement tracking
- AI-driven community research and trend identification
- Automated content creation and interaction 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 · Install
- Clone the repository:
git clone https://github.com/Arindam200/reddit-mcp.git
cd reddit-mcp- Configure MCP server in your Claude Desktop config file (
~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"reddit": {
"command": "{{PATH_TO_UV}}",
"args": [
"--directory",
"{{PATH_TO_SRC}}",
"run",
"server.py"
],
"env": {
"REDDIT_CLIENT_ID": "your_client_id",
"REDDIT_CLIENT_SECRET": "your_client_secret",
"REDDIT_USERNAME": "your_username",
"REDDIT_PASSWORD": "your_password"
}
}
}
}- Restart Claude Desktop. Obtain Reddit API credentials from [Reddit's app preferences page](https://www.reddit.com/prefs/apps).
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"]
}
}
}