reddit-mcp-server
Reddit MCP Server
Give your AI assistant a live, structured window into Reddit β zero API keys required.
Reddit MCP Server is an open-source Model Context Protocol (MCP) server that connects AI assistants (Claude, Cursor, Open WebUI, and more) to Reddit's content in real time. It provides structured tools for searching discussions, extracting community opinions, and tracking niche trends β with a resilient multi-tier fallback engine that works even without any credentials.
# Get started in one command β no sign-up, no API keys
uvx reddit-mcp-aiπΊοΈ How it Works (Data Flow Sequence)
Here is a visual sequence diagram showing how the AI model interacts with this server, including our Zero-Config Fallback system:
sequenceDiagram
autonumber
actor AI as AI Assistant (Claude/Cursor)
participant MCP as FastMCP Server (STDIO)
participant Tools as Application Tools
participant Reddit as Reddit API (OAuth)
participant Fallback as DDG & Arctic Shift
AI->>MCP: Request (e.g., search_knowledge)
MCP->>Tools: Route request
Tools->>Reddit: Attempt Fetch (Resilient HTTP)
alt Has OAuth Credentials & API Healthy
Note over Reddit,Tools: Handles 429 (Rate Limits) with Retry-After backoff!
Reddit-->>Tools: Return Official JSON payload
else Zero-Config OR Reddit API Fails
Note over Tools,Fallback: Graceful Degradation Active
Tools->>Fallback: Execute Search / Fetch Archive
Fallback-->>Tools: Return Alternative JSON payload
end
Tools->>Tools: Refine comments (filter bots & short noise)
Tools-->>MCP: Map to Domain Models (Pydantic)
MCP-->>AI: Return clean JSON-RPC Response (stdout-safe)β¨ Features
π Zero-Config Ready: Works completely out of the box. No Reddit API keys required β it falls back automatically to DuckDuckGo and the Arctic Shift archive.
π‘οΈ Cascading Multi-Tier Engine:
Official OAuthβSession CookieβBrowser-Impersonated JSONβArctic Shift RSSβDDG. The AI always gets data, even when Reddit is rate-limiting or credentials are missing.π¦ Built-in Anti-Ban Shields: Token bucket rate limiter, global concurrency semaphore, and singleflight request coalescing prevent WAF 403 blocks and IP bans under heavy AI traffic.
οΏ½ Resilient HTTP Client: Exponential backoff with
Retry-Afterrespect, a bounded 14-second aggregate deadline, and automatic OAuth token self-healing on mid-flight 401s.π€ LLM-Safe Filtering: Drops AutoModerator, bots, and low-signal comments before they reach the model β saving tokens and reducing noise.
β±οΈ Strict Timeout Protection: Decorator-enforced timeouts return clean JSON-RPC fallbacks instead of hanging the AI client.
π STDIO & SSE Transport: Runs as a local CLI tool for Claude/Cursor or as a Docker microservice on port
8000for Open WebUI, LibreChat, and n8n.
π§° Available Tools
Tool Name | Purpose | Best Used For |
| Broad web search via DuckDuckGo | Finding technical explanations and factual discussions across Reddit. |
| Discussion search with metrics | Gauging sentiment, upvote consensus, and topic exploration. |
| Deep comment tree extraction & filtering | Reading high-quality community opinions with noise & bots removed. |
| Live trending & rising posts tracker | Identifying real-time problems, pain points, or new ideas in a niche. |
| The user's own saved posts over a time period | Revisiting, summarizing, or triaging bookmarked content (requires the saved-items feed URL). |
βοΈ Prerequisites & Setup
Requirements
Python 3.11 or higher
Reddit API App credentials (Optional, but recommended for live trending data & better rate limits)
Quick Start
You can run this server directly without installation using uvx (recommended) or pipx:
# Run locally (STDIO mode) for Cursor/Claude
uvx reddit-mcp-ai
# OR run as a background service (Streamable HTTP mode) for Open WebUI / Web clients
uvx reddit-mcp-ai --transport http --host 0.0.0.0 --port 8000Configure your environment (Optional):
To unlock the official Reddit API, Cookie Authentication, or Saved Posts, you can either inject environment variables via your MCP client config, or create a global configuration file at ~/.config/reddit-mcp-server/.env (Mac/Linux) or %APPDATA%\reddit-mcp-server\.env (Windows):
# Optional: Official Reddit App Credentials
REDDIT_CLIENT_ID="your_client_id_here"
REDDIT_CLIENT_SECRET="your_client_secret_here"
# Optional: Direct Cookie Auth (Instant sub-second access & pagination)
# Extract from DevTools -> Application -> Cookies -> reddit_session (Use an alt account)
REDDIT_SESSION_COOKIE="your_reddit_session_cookie_here"
# Optional: Concurrency & Rate Limiting Shields
REDDIT_MAX_CONCURRENCY=4
REDDIT_RATE_LIMIT_PER_MINUTE=40Consider also setting REDDIT_USER_AGENT to a descriptive, unique value β Reddit's API guidelines ask for this, even in zero-config mode. If unset, the server generates a default with a random per-install suffix (persisted under your XDG state directory so it stays stable across restarts).
To enable the get_saved_posts tool, add your private saved-items feed URL:
REDDIT_SAVED_RSS_URL="https://www.reddit.com/user/YOUR_USERNAME/saved.rss?feed=YOUR_FEED_TOKEN&user=YOUR_USERNAME"While logged in, open reddit.com/prefs/feeds/ and copy the exact link for "your saved links". The feed token is a credential for your account β treat it like a password (the server never logs it and rejects non-Reddit hosts). The feed exposes the most recent ~100 saved items; scores and comment counts are not available through it.
π³ Docker Installation
A multi-stage Dockerfile is provided. The container is configured to run in SSE (HTTP) mode by default on port 8000, making it a perfect microservice.
# Build the image
docker build -t reddit-mcp-server .
# Run it in the background
docker run -d -p 8000:8000 --name reddit-mcp reddit-mcp-serverDocker Compose Example
services:
reddit-mcp:
build: .
container_name: reddit-mcp
ports:
- "8000:8000"
restart: unless-stopped
environment:
# Optional Configuration
- REDDIT_CLIENT_ID=your_id_optional
- REDDIT_CLIENT_SECRET=your_secret_optionalNote: If using Docker with STDIO mode, replace the command in client configs with
dockerand arguments withrun -i --rm reddit-mcp-server.
π οΈ Configuration for AI Clients
1. Claude Desktop
Edit your configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Simple / Zero-Config Setup (Recommended):
{
"mcpServers": {
"reddit": {
"command": "uvx",
"args": [
"reddit-mcp-ai"
]
}
}
}Full Setup with Optional Features (OAuth & Saved Posts):
{
"mcpServers": {
"reddit": {
"command": "uvx",
"args": [
"reddit-mcp-ai"
],
"env": {
"REDDIT_CLIENT_ID": "your_client_id_here",
"REDDIT_CLIENT_SECRET": "your_client_secret_here",
"REDDIT_SAVED_RSS_URL": "your_feed_url_here"
}
}
}
}2. Cursor / OpenCode
Go to Settings > Features > MCP and add a new command-based server:
Type: command
Name: Reddit
Command:
uvx reddit-mcp-aiEnv: (Optional) Add
REDDIT_SAVED_RSS_URLand your feed link here if you want to use the saved posts feature.
3. Open WebUI (and other Web Clients)
When running the server via Docker or in Streamable HTTP mode:
Go to Admin Panel > Settings > External Connections / Tools.
Add a new MCP Server.
Type:
MCP (Streamable HTTP)URL:
http://localhost:8000/mcp(Usehttp://host.docker.internal:8000/mcpif Open WebUI is also running in Docker).
π§ͺ Developer Experience (DX) & Testing
We prioritize high test coverage. We mock all network traffic, ensuring tests run instantly and reliably.
Run Tests
# Install development dependencies (using uv β recommended)
uv sync --locked --extra dev
# Or with pip
pip install -e ".[dev]"
# Execute pytest
uv run pytest tests/Manual Testing with the MCP Inspector
npx @modelcontextprotocol/inspector uvx reddit-mcp-aiThis will launch a web browser UI where you can invoke the search_knowledge, explore_reddit_discussions, extract_public_opinion, and analyze_niche_trends tools directly and inspect the JSON responses.
π€ Contributing
Contributions are welcome! Here's how to get started:
Fork the repository and clone your fork.
Install dependencies:
uv sync --locked --extra devCreate a branch:
git checkout -b feature/your-feature-nameMake your changes, then lint and test:
uv run ruff check .
uv run ruff format .
uv run pytest tests/Open a pull request β CI will run automatically.
For architectural guidance, see docs/architecture.md.
To add a custom search provider, see src/reddit_mcp/infrastructure/search/providers/README.md.
Please read CONTRIBUTING.md and CODE_OF_CONDUCT.md before submitting.
π₯ Contributors & Special Thanks
A huge thank you to everyone who helps make the Reddit MCP Server better!
@brianluby β Major contributions to core architecture, security hardening, and resilience engineering.