Reddit MCP Server
Allows to search, browse, and analyze Reddit content in real-time. Provides tools for searching subreddits, full-text search, reading comments, getting post details, subreddit info, and analyzing business opportunities.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Reddit MCP Serverfind business opportunities in r/Entrepreneur"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Reddit MCP Server
A Model Context Protocol (MCP) server that enables AI assistants (such as Claude Desktop, Claude Code, and other MCP clients) to search, browse, and analyze Reddit in real-time.
Built using FastMCP and Playwright, this server operates without requiring a Reddit API key by dynamically scraping the public Reddit interface with optimized, headless browser sessions.
Current Version: v0.0.1 (Latest)
No Reddit API key required — It works by scraping the public Reddit web interface.
Table of Contents
Related MCP server: Reddit Buddy MCP
Features
Reddit Search: Browse one or multiple subreddits simultaneously with native sorting and keyword filtering.
Comment Extraction: Fetch complete threaded comments from any Reddit post, preserving authors, scores, and depth.
Subreddit Analytics: Retrieve subreddit description, active member counts, and trending/top posts.
Business Opportunity Discovery: Scan specific subreddits for startup ideas or pain points with smart scoring.
Performance Optimized: Blocks heavy assets (images, fonts, media, tracking) to ensure lightning-fast scraping.
Robust Scraper: Implements resilient CSS selectors, automatic scroll-loading, and timeout handling.
Architecture Overview
The server communicates via standard I/O (stdin/stdout) using the Model Context Protocol. When an AI client invokes a tool:
FastMCP dispatches the tool call to Python.
A headless Playwright (Chromium) instance is initialized with custom headers and a realistic user-agent.
Media and unnecessary network assets are intercepted and blocked to minimize bandwidth and processing time.
The requested Reddit page is loaded, scrolled dynamically if necessary, and scraped via robust selectors.
Data is structured, analyzed (e.g. scored for opportunities), and returned to the client as JSON.
Available Tools
Tool | Parameters | Description |
|
| Browse posts from specific subreddits with sorting. |
|
| Perform a global keyword search across Reddit. |
|
| Extract threaded comments with hierarchical depth. |
|
| Get full details including post selftext, link, and metadata. |
|
| Retrieve member statistics, description, and top posts. |
|
| Identify high-potential SaaS and startup pain points. |
Installation & Setup
Prerequisites
Python 3.10 or higher
pip (Python package installer)
Node.js (optional, for running
fastmcpCLI easily)
Quick Start
Clone the repository:
git clone https://github.com/YOUR_USERNAME/reddit-mcp-server.git cd reddit-mcp-serverCreate and activate a virtual environment (recommended):
python -m venv .venv # On macOS/Linux: source .venv/bin/activate # On Windows (Command Prompt): .venv\Scripts\activate.bat # On Windows (PowerShell): .venv\Scripts\Activate.ps1Install dependencies:
pip install -r requirements.txtInstall Playwright Chromium browser:
playwright install chromium
Client Configuration
Claude Desktop
To integrate this server with Claude Desktop, add it to your configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add the following inside the mcpServers block (make sure to use absolute paths):
{
"mcpServers": {
"reddit-mcp": {
"command": "/path/to/your/virtualenv/bin/python",
"args": ["/path/to/reddit-mcp-server/server.py"]
}
}
}Note for Windows users: Use double backslashes in your paths (e.g., "C:\\path\\to\\python.exe").
Claude Code
Install and register the server globally using Claude Code CLI:
claude mcp add reddit-mcp -- python /path/to/reddit-mcp-server/server.pyTool Usage & Examples
Global Search
Ask your AI assistant: "Search Reddit for 'best keyboard for typing 2025' from the last month." Under the hood, the AI will invoke:
{
"tool": "search_reddit_query",
"arguments": {
"query": "best keyboard for typing 2025",
"sort": "relevance",
"time_filter": "month"
}
}Business Opportunity Analysis
Ask your AI assistant: "Analyze r/SaaS and r/Entrepreneur for startup pain points." Under the hood, the AI will invoke:
{
"tool": "analyze_opportunities",
"arguments": {
"subreddits": ["saas", "Entrepreneur"],
"min_score": 150,
"limit": 20
}
}Opportunity Scoring Algorithm
The analyze_opportunities tool implements a proprietary scoring function to identify valid business ideas and high-impact problems:
$$Score = (Upvotes \times 2) + (Comments \times 3)$$
Additionally, the following multipliers and bonuses are applied:
High Engagement Ratio: If comments-to-upvotes ratio is $> 0.3$, the score is multiplied by 1.3 (or 1.15 if $> 0.15$).
Monetization Keywords: $+15$ points per match for words like
subscription,SaaS,buy,pricing,charge,dollar.Impact & Pain Point Keywords: $+20$ points per match for words like
problem,frustrated,annoying,broken,wish,need,hate.Dual-Category Match Bonus: If both monetization and pain point keywords are detected, the overall score is multiplied by 1.25.
Advanced Configuration
Customized Scraper Parameters
The browser scraping parameters can be fine-tuned directly in server.py:
Viewport Size: Configured to
1280x900to simulate a real desktop.User Agent: Utilizes a modern, realistic user-agent string to prevent blockages.
Media Blocklist: All routes ending in visual assets (
.png,.jpg,.gif, etc.) are aborted to optimize performance.
Troubleshooting & Limitations
Rate Limits & IP Blocks: Heavy automated scraping may trigger Reddit's anti-bot system, leading to HTTP 429 errors or temporary blocks. Ensure you do not make rapid sequential calls.
Dynamic CSS Selectors: Since this server relies on web scraping instead of the official API, updates to Reddit's frontend architecture (e.g., changing
shreddit-posttags) may break selectors. Please open an issue if this occurs.Speed Performance: Rendering Chromium headlessly and scrolling to load content takes between 5 to 30 seconds per request depending on your connection speed and system performance.
No Private Auth: This tool operates on public-facing Reddit pages and does not support logging into accounts or viewing private communities.
Contributing
Contributions are highly appreciated! Whether you want to improve the scraping selectors, add new analytical tools, or refine the documentation, we welcome your input.
Please read our Contributing Guidelines to get started on setting up the local development environment and creating pull requests.
Security
We take security seriously. If you discover any vulnerability in this server, please refer to our Security Policy for details on how to report it securely.
License
This project is licensed under the MIT License - see the LICENSE file for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Simonc44/Reddit-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server