Reddit Search AI β Keyword, Feed, Comments, MCP & LLM
Pricing
from $0.05 / 1,000 results
Reddit Search AI β Keyword, Feed, Comments, MCP & LLM
AI-ready Reddit keyword search returning structured JSON for LLMs, AI agents, and MCP servers. Search Reddit globally by keyword, extract posts with title, score, comments, author, timestamp. Sort: hot/new/top/relevance. Auto retry, residential proxy. No API key, no login, no browser. 100% success.
Pricing
from $0.05 / 1,000 results
Rating
0.0
(0)
Developer
Actor stats
0
Bookmarked
5
Total users
1
Monthly active users
23 days ago
Last modified
Categories
Share
π AIβReady
π MCP Server
π Success Rate
π Price
The most complete Reddit MCP server on the Apify Store.
Search globally by keyword, browse subreddit feeds, extract comments, profile users, get subreddit metadata, and discover trending communities β all through a native MCP server or batch API.
β
100% success rate Β· β
7 MCP tools Β· β
50Γ cheaper than competitors Β· β
No API key required
π Why This Actor Is Superior
| Feature | Reddit Search AI (YOU) | harshmaur/reddit-scraper | labrat011/reddit-scraper | makework36/reddit-mcp-server |
|---|---|---|---|---|
| True MCP Server (7 tools) | β YES | β | β | β |
| Keyword search (batch) | β Up to 100 keywords | β | β | β |
| Subreddit feed | β hot/new/top/rising/controversial | β | β | β |
| Comment scraping | β Top-level + threaded via MCP | β | β | β |
| User profile (posts + comments) | β submitted/comments/overview | β URL-based | β | β |
| Subreddit metadata | β via MCP tool | β | β | β |
| Trending subreddits | β via MCP tool | β | β | β |
| Time filter | β hour/day/week/month/year/all | β | β | β |
| Pagination beyond 100 | β unlimited (after token) | β (900 max) | β (10K max) | β (250 max) |
| Price per result | $0.00001 π | $0.002 β | $0.0005 β | $0.02/call β |
| Success rate | 100% π | 94.1% | 94.3% | 100% |
| Residential proxy | β | β | β | β |
| Category MCP Servers | β | β | β | β |
| Category AI | β | β | β | β |
Result: The ONLY Reddit actor that combines a true MCP server, all 4 data modes, 7 MCP tools, 100% success rate, and the cheapest price on the platform.
π MCP Server β Connect Claude, Cursor, ChatGPT, Codex
This Actor is a native Model Context Protocol (MCP) server with 7 Reddit tools.
AI agents connect via Streamable HTTP β no SDK needed.
How to Connect
Claude Desktop
Add to your claude_desktop_config.json:
{"mcpServers":{"reddit-search-ai":{"type":"streamable-http","url":"https://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/run-sync?token=YOUR_APIFY_TOKEN","params":{"mode":"mcp_server"}}}}
Cursor / VS Code / Continue
Add to your MCP configuration:
{"mcpServers":{"reddit-search-ai":{"type":"streamable-http","url":"https://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/run-sync?token=YOUR_APIFY_TOKEN","params":{"mode":"mcp_server"}}}}
ChatGPT / OpenAI Codex
Use the Apify integration or call the MCP endpoint directly:
POSThttps://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/run-syncBody:{"mode":"mcp_server"}Headers: Authorization: Bearer YOUR_APIFY_TOKEN
Available MCP Tools
| Tool | Description | Key Parameters |
|---|---|---|
search_reddit | Search Reddit globally by keyword | query, subreddit?, sort?, time_filter?, limit |
get_subreddit_posts | Browse subreddit feed | subreddit, sort?, time_filter?, limit |
get_post_with_comments | Get a post + full comment tree | post_id? + subreddit? OR url |
get_user_posts | Get posts by a user | username, sort?, time_filter?, limit |
get_user_comments | Get comments by a user | username, sort?, time_filter?, limit |
get_subreddit_info | Subreddit metadata | subreddit |
get_trending_subreddits | Trending communities | category?, limit |
What You Can Do
| Mode | Description | Example |
|---|---|---|
keyword_search | Search Reddit globally by keyword (single or batch) | {"keywords": ["AI", "GPT-5"]} |
subreddit_feed | Get posts from a subreddit (hot/new/top/rising) | {"subreddit": "technology", "sortType": "hot"} |
user_profile | Get posts or comments from a user | {"usernames": ["spez"], "userContentType": "submitted"} |
mcp_server | Start MCP server for AI agent connection | {"mode": "mcp_server"} |
Input Parameters
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
mode | enum | No | keyword_search | keyword_search, subreddit_feed, user_profile, or mcp_server |
keywords | array | No | [] | Batch keywords for keyword_search mode |
keyword | string | No | "" | Single keyword fallback |
subreddit | string | No | "" | Subreddit name for subreddit_feed mode |
usernames | array | No | [] | Usernames for user_profile mode |
userContentType | enum | No | submitted | submitted, comments, or overview |
sortType | enum | No | new | new, hot, top, relevance, rising, controversial, comments |
timeFilter | enum | No | all | all, hour, day, week, month, year |
limit | integer | No | 20 | Max results (uses pagination for >100) |
include_comments | boolean | No | false | Fetch top-level comments per post |
max_comments_per_post | integer | No | 10 | Max comments per post (max 100) |
Output Format
Each result is a clean JSON object:
{"title":"EU AI Act: What the New Regulations Mean for Startups","subreddit":"europe","url":"https://reddit.com/r/europe/comments/abc123/","text":"The European Union has passed sweeping AI regulations...","score":3421,"num_comments":567,"author":"tech_analyst","created_utc":1710845231.0,"comments":[{"author":"redditor42","body":"This is a great step forward...","score":245,"created_utc":1710846000.0}]}
Usage Examples
1. cURL β Keyword Search with Comments
curl-s-X POST "https://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/runs?token=YOUR_API_TOKEN"\-H"Content-Type: application/json"\-d'{"mode":"keyword_search","keywords":["AI regulation","GPT-5"],"limit":5,"include_comments":true}'
2. cURL β Subreddit Feed
curl-s-X POST "https://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/runs?token=YOUR_API_TOKEN"\-H"Content-Type: application/json"\-d'{"mode":"subreddit_feed","subreddit":"technology","sortType":"hot","limit":10,"timeFilter":"week"}'
3. cURL β User Profile
curl-s-X POST "https://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/runs?token=YOUR_API_TOKEN"\-H"Content-Type: application/json"\-d'{"mode":"user_profile","usernames":["spez"],"userContentType":"submitted","limit":5}'
4. Python β Agent Pipeline
import requestsAPI_TOKEN ="YOUR_APIFY_TOKEN"response = requests.post("https://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/runs",params={"token": API_TOKEN},json={"mode":"keyword_search","keywords":["AI startups"],"limit":20},)run = response.json()dataset_id = run["data"]["defaultDatasetId"]results = requests.get(f"https://api.apify.com/v2/datasets/{dataset_id}/items",params={"format":"json"},).json()print(results)
Error Handling
| Scenario | Behavior | Retry Strategy |
|---|---|---|
| Missing parameters | Returns immediately with log | N/A β fix input |
| Reddit rate limit (429) | Logs error, retries | Exponential backoff: 2s, 4s, 8s (3 attempts) |
| Network timeout | Retries | Exponential backoff |
| Reddit 403 (blocked) | Fresh proxy via rotation | Residential proxy handles this |
| Empty results | Returns empty dataset | N/A β valid response |
| All retries exhausted | Structured error JSON pushed to dataset | Contains error, error_message, input |
Pricing
| Component | Price | Comparison |
|---|---|---|
| Actor start | $0.0001 | Oneβtime per run |
| Per result | $0.00005 | 10Γ cheaper than labrat011 Β· 40Γ cheaper than harshmaur |
Example: 100 posts cost $0.0051. Apify free plan ($5/month) covers ~980 full runs (98,000 results).
Still the cheapest Reddit scraper on the Apify store with the most features.
Why AI Agents Choose This Actor
- β Native MCP server β works with Claude, Cursor, ChatGPT, Codex, Windsurf
- β 7 MCP tools β search, subreddits, comments, users, metadata, trending
- β 4 batch modes β keyword search, subreddit feed, user profile, MCP server
- β 100% success rate β never fails silently
- β Structured JSON output β ready for LLM ingestion
- β No API key, no login, no browser β zero friction
- β Residential proxy rotation β no 403 blocks
- β Automatic retry with exponential backoff (3 attempts)
- β $0.00005/result β cheapest Reddit scraper on Apify
- β
Pagination beyond 100 β unlimited results via
aftertoken - β Time filtering β hour/day/week/month/year/all
- β 10Γ cheaper than labrat011 with more features
Limitations
- Public subreddits only β no private/restricted communities
texttruncated to 500 chars β for full text, use the post URL- Comments are top-level (1 level deep) in batch mode; full tree via MCP tool
scorecan be negative β downvoted posts are included
Changelog
| Date | Version | Changes |
|---|---|---|
| 2026-05-27 | 0.0.21 | MCP Server β 7 native MCP tools, Streamable HTTP, Claude/Cursor/Codex support |
| 2026-05-27 | 0.0.20 | User profile, time filter, pagination beyond 100 |
| 2026-05-27 | 0.0.19 | Subreddit feed, comment scraping, batch search |
| 2026-05-27 | 0.0.17 | Bug fix, retry logic, error handling, SEO metadata |
| 2026-03-19 | 0.0 | Initial release β global keyword Reddit search |
