Reddit Mcp Server
Pricing
Pay per event
Reddit Mcp Server
MCP server that provides Reddit scraping tools for AI agents. π No Reddit API key required.
Pricing
Pay per event
Rating
0.0
(0)
Developer

AbotAPI
Actor stats
0
Bookmarked
1
Total users
0
Monthly active users
a day ago
Last modified
Categories
Share
π€ Reddit MCP Server
An MCP (Model Context Protocol) server that provides Reddit scraping tools for AI agents. π No Reddit API key required.
π What is this?
This is an Apify Actor that runs as an MCP server, exposing Reddit scraping capabilities to AI agents like Claude, GPT, and other MCP-compatible clients. It enables AI assistants to search, browse, and extract data from Reddit in real-time.
π οΈ Available Tools
| Tool | Description |
|---|---|
scrape_subreddit | Scrape posts from any subreddit with optional comments |
scrape_user | Scrape posts from a Reddit user's profile |
search_reddit | Search Reddit for posts matching a query |
get_post_comments | Get comments from a specific post |
get_subreddit_info | Get subreddit metadata (subscribers, description, etc.) |
π Tool Details
scrape_subreddit
Scrape posts from a Reddit subreddit.
Parameters:
subreddit(required): Subreddit name without r/ prefix (e.g., "python", "askreddit")limit: Maximum posts (1-100, default: 25)sort: Sort order - "hot", "new", "top", "rising" (default: "hot")timeframe: For "top" sort - "hour", "day", "week", "month", "year", "all"include_comments: Fetch comments for each post (default: false)
scrape_user
Scrape posts from a Reddit user's profile.
Parameters:
username(required): Reddit username without u/ prefixlimit: Maximum posts (1-100, default: 25)sort: Sort order - "hot", "new", "top" (default: "new")timeframe: For "top" sort - "hour", "day", "week", "month", "year", "all"
search_reddit
Search Reddit for posts matching a query.
Parameters:
query(required): Search querysubreddit: Limit search to specific subreddit (optional)limit: Maximum results (1-100, default: 25)sort: "relevance", "hot", "top", "new", "comments" (default: "relevance")timeframe: "hour", "day", "week", "month", "year", "all"
get_post_comments
Get comments from a specific Reddit post.
Parameters:
post_url(required): Full Reddit post URL or post IDlimit: Maximum comments (1-200, default: 50)
get_subreddit_info
Get metadata about a subreddit.
Parameters:
subreddit(required): Subreddit name without r/ prefix
π‘ Use Cases
- π Research - AI agents can search and analyze Reddit discussions
- π Trend Analysis - Monitor trending topics in specific communities
- π¬ Sentiment Analysis - Gather opinions and feedback from Reddit
- π° Content Discovery - Find relevant posts and discussions
- π€ Automated Monitoring - Track brand mentions and keywords
π§ Configuration
Input Parameters
| Parameter | Type | Description |
|---|---|---|
proxy | object | Proxy configuration (RESIDENTIAL recommended for Reddit) |
Proxy Configuration
Reddit blocks most datacenter IPs. For reliable access, enable Apify Proxy:
{"proxy": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "US"}}
π How to Use
With Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{"mcpServers": {"reddit": {"command": "npx","args": ["-y","@anthropic-ai/mcp-shell","https://actors-mcp-server.apify.actor","--actors", "abotapi/reddit-mcp-server"]}}}
With Apify MCP Client
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_TOKEN")actor = client.actor("abotapi/reddit-mcp-server")# Start in standby moderun = actor.start(run_input={}, wait_for_finish=False)
π€ Output Examples
Post Output
{"id": "1hj2abc","title": "What's your favorite Python library?","author": "pythonista123","subreddit": "python","created_utc": "2024-12-20T15:30:00","permalink": "https://reddit.com/r/python/comments/1hj2abc/...","score": 1542,"num_comments": 234,"selftext": "I've been exploring different libraries...","post_type": "text","media_urls": {"images": [],"videos": [],"galleries": []}}
Comment Output
{"id": "kx7y9z","author": "dev_guru","body": "Pandas is absolutely essential for data work.","score": 89,"created_utc": "2024-12-20T16:45:00","depth": 0}
β Features
| Feature | Supported |
|---|---|
| π Subreddit scraping | β |
| π€ User profile scraping | β |
| π Reddit search | β |
| π¬ Comments extraction | β |
| π Subreddit metadata | β |
| πΌοΈ Media URL extraction | β |
| π Proxy support | β |
| π No API key needed | β |
| β‘ MCP Protocol | β |
β οΈ Limitations
- π¦ Reddit rate limits apply (~100 requests per minute)
- π Private subreddits not accessible
- π Limited to publicly available content
- π Results limited to 100 items per request