Reddit MCP Server
Enables AI agents to search, monitor, and analyze Reddit's communities and discussions through authenticated API access with intelligent caching and rate limiting.
README
Reddit MCP Server
Enterprise-grade Model Context Protocol (MCP) server for seamless Reddit data access. Enables AI agents and developers to search, monitor, and analyze Reddit's 73M daily active users and 100K+ communities.
Features (MVP v0.1.0)
- search_reddit - Search all of Reddit or specific subreddits with filters
- get_subreddit_posts - Monitor subreddits for hot, new, top, or rising posts
- get_post_comments - Retrieve nested comment threads with full context
- get_trending_topics - Discover trending keywords and topics in real-time
All tools include intelligent Redis caching (75%+ hit rate) and automatic rate limiting.
Prerequisites
- Python 3.11 or higher
- Redis server (local or cloud)
- Reddit API credentials (client ID and secret)
Getting Reddit API Credentials
- Go to https://www.reddit.com/prefs/apps
- Click "Create App" or "Create Another App"
- Select "script" as the app type
- Fill in the required fields:
- Name: "Reddit MCP Server"
- Redirect URI: http://localhost:8080
- Save your client ID (under the app name) and client secret
Local Development Setup
1. Clone and Install
# Clone the repository
cd /Users/padak/github/apify-actors
# Create virtual environment
python3.11 -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
2. Configure Environment Variables
Create a .env file in the project root:
# Reddit API Credentials
REDDIT_CLIENT_ID=your_client_id_here
REDDIT_CLIENT_SECRET=your_client_secret_here
# Redis Connection
REDIS_URL=redis://localhost:6379
# Logging (optional)
LOG_LEVEL=INFO
3. Start Redis (Local)
# Using Docker
docker run -d -p 6379:6379 redis:7-alpine
# Or install Redis locally (macOS)
brew install redis
brew services start redis
4. Run the Server
python -m src.main
The MCP server will start in standby mode on the configured port (default: /mcp endpoint).
Testing
# Run all tests
pytest tests/
# Run with coverage
pytest --cov=src tests/
# Run only unit tests
pytest tests/unit/
# Run only integration tests (requires Redis + Reddit API)
pytest tests/integration/
Apify Deployment
Deploy to Apify Platform
- Install Apify CLI
npm install -g apify-cli
apify login
- Configure Secrets
In the Apify Console, add these secrets to your Actor:
REDDIT_CLIENT_IDREDDIT_CLIENT_SECRETREDIS_URL
- Deploy
apify push
The Actor will be deployed in standby mode and accessible via the MCP endpoint.
Environment Variables (Apify)
| Variable | Type | Required | Description |
|---|---|---|---|
REDDIT_CLIENT_ID |
Secret | Yes | Reddit API client ID |
REDDIT_CLIENT_SECRET |
Secret | Yes | Reddit API client secret |
REDIS_URL |
String | Yes | Redis connection URL |
LOG_LEVEL |
String | No | Logging level (default: INFO) |
Project Structure
/Users/padak/github/apify-actors/
├── src/
│ ├── main.py # Entry point
│ ├── tools/ # MCP tool implementations
│ ├── reddit/ # Reddit API integration
│ ├── cache/ # Redis caching layer
│ ├── models/ # Pydantic data models
│ └── utils/ # Shared utilities
├── tests/ # Test suite
├── docs/ # Documentation
├── actor.json # Apify Actor configuration
├── Dockerfile # Container definition
├── requirements.txt # Python dependencies
└── README.md # This file
Development Workflow
Code Quality
# Format code with Black
black src/ tests/
# Lint with Ruff
ruff check src/ tests/
# Type check with mypy
mypy src/ --strict
Running Individual Tools (Development)
TODO: Add examples once tools are implemented (MVP-006 through MVP-009)
Architecture
- MCP Server: FastMCP framework for JSON-RPC protocol handling
- Reddit API: PRAW (Python Reddit API Wrapper) for authenticated access
- Caching: Redis with intelligent TTL policies (2min - 1hr)
- Rate Limiting: Token bucket algorithm (100 requests/min)
- Data Validation: Pydantic models for type-safe inputs/outputs
See /Users/padak/github/apify-actors/docs/architecture/ for detailed technical documentation.
Troubleshooting
Redis Connection Errors
# Check if Redis is running
redis-cli ping
# Should return: PONG
# Test connection with URL
redis-cli -u redis://localhost:6379 ping
Reddit API Authentication Errors
- Verify your client ID and secret are correct
- Check that your Reddit app type is "script"
- Ensure the redirect URI matches: http://localhost:8080
Import Errors
# Ensure you're in the virtual environment
source venv/bin/activate
# Reinstall dependencies
pip install -r requirements.txt
Contributing
This is an MVP project. Contributions should align with the roadmap:
- MVP (Week 1-2): Core 4 tools + caching + rate limiting
- v1.0 (Week 3-4): Monetization, sentiment analysis, user auth
- v2.0 (Month 2+): Write operations, real-time monitoring, analytics
Documentation
License
[Add license information]
Support
For issues or questions, please refer to the documentation in /docs/ or create an issue in the repository.
Status: MVP v0.1.0 (Week 1-2 Development) Target: 5,000 MAU by Month 6 (Apify $1M Challenge)
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.