CrawlForge MCP
HomePlaygroundUse CasesIntegrationsPricingDocumentationBlog
CrawlForge MCP v5.1.0: Search Reddit Without the API
Product Updates
Back to Blog
Product Updates

CrawlForge MCP v5.1.0: Search Reddit Without the API

C
CrawlForge Team
Engineering Team
August 24, 2026
9 min read

On this page

Quick Answer

CrawlForge MCP v5.1.0 adds reddit_search, its 28th tool: search Reddit posts and comments or read a full comment thread without touching reddit.com, which blocks scrapers outright. Instead of the approval-gated official Reddit API, it queries two community archives — Arctic Shift (near-real-time, nested comment trees) and PullPush (Pushshift-compatible full-text search) — so it needs no Reddit credentials at all. Three modes: posts, comments, and thread. Costs 2 credits per call. Upgrade with npm install -g crawlforge-mcp-server@latest.

Ask any scraper developer what the hardest mainstream site is in 2026 and Reddit is a safe answer. We would know — reddit.com blocks every direct access path CrawlForge has, from a plain fetch to a full stealth browser. So CrawlForge MCP v5.1.0 stops fighting the wall and goes around it: the new reddit_search tool — our 28th — searches Reddit posts and comments and reads entire threads through community-run archives, with no Reddit API key, no OAuth app, and no credentials of any kind.

Table of Contents

  • What Shipped
  • Why reddit.com Cannot Be Scraped
  • Meet reddit_search
  • The Archives: Arctic Shift and PullPush
  • How Routing Works
  • Honest Caveats
  • Using It From MCP and REST
  • What About the Reddit Thread Template
  • Also Since v5.0.4
  • Credit Cost
  • How to Upgrade

What Shipped

v5.1.0 is a focused minor release with one headline:

  • reddit_search — search Reddit posts (title + selftext) and comments, or read a post plus its nested comment tree, via the Arctic Shift and PullPush community archives. Three modes, scoped filters, normalized output. 2 credits per call.
  • Tool count goes from 27 to 28, and the MCP server card, tool instructions, and getting-started prompt all know about the newcomer.
  • 31 new unit tests (1,018 total in the suite) and 100% MCP protocol compliance across all 28 tools, live-verified over MCP stdio returning real r/ClaudeAI posts.

Why reddit.com Cannot Be Scraped

We did not reach for archives out of preference — we measured the wall first. Before building the tool we ran every direct path against reddit.com, live:

  • fetch_url with a full browser User-Agent: 403
  • scrape against old.reddit.com: 403
  • scrape_template with the reddit-thread template: 403
  • stealth_mode at its most advanced level: 403

The block is layered — datacenter IP reputation first, TLS fingerprinting at the handshake, then a JavaScript challenge — which is why even a stealth browser on a server fails. And the sanctioned door narrowed too: Reddit closed self-service API signup in November 2025 under its Responsible Builder Policy, so new applications for official API credentials go through an approval request rather than a signup form. Most Reddit MCP servers wrap that official API, which now makes "get credentials" the hardest step of their setup.

reddit_search sidesteps all of it. It never sends a single request to reddit.com.

Meet reddit_search

One tool, three modes:

  • posts (default) — keyword search across post titles and selftext, optionally scoped to a subreddit or author. Supports "quoted phrases", OR, and -exclusion.
  • comments — full-text search across comment bodies, something the official Reddit API cannot do at all.
  • thread — hand it a post ID and get the post plus its nested comment tree, with reddit-style collapse markers for branches too deep to expand.

Filters cover subreddit, author, after/before dates (ISO 8601, epoch seconds, or offsets like "7d"), limit (up to 100), and sort. Results come back normalized: full reddit.com permalinks, ISO dates, scores, comment counts, and text capped at 2,000 characters with truncation flags so a 100-result payload stays friendly to an LLM context window.

A typical call from an MCP client looks like this:

Json
{
  "tool": "reddit_search",
  "arguments": {
    "query": "best mcp servers",
    "subreddit": "ClaudeAI",
    "mode": "posts",
    "limit": 10
  }
}

Take any post id from the results, pass it back as link_id with mode: "thread", and you have the whole discussion — ready for summarize_content or analyze_content to turn into sentiment, topics, and a briefing.

The Archives: Arctic Shift and PullPush

If you remember Pushshift — the beloved Reddit research archive that lost its API access in 2023 — these two projects are its successors, and they are what reddit_search queries:

  • Arctic Shift ingests Reddit in near-real-time. During live testing it returned a post created the same day, and it serves proper nested comment trees. Its one documented constraint: keyword search must be scoped to a subreddit or author.
  • PullPush is Pushshift-compatible and does what Arctic Shift will not — full-text search across all of Reddit. The trade-offs: documented gaps in its post-2023 archive and aggressive rate limits.

Both are free, both are community-run, and neither needs credentials. Every response includes provenance notes naming the archive that answered, so downstream consumers always know where the data came from.

How Routing Works

You never pick a backend unless you want to. In the default auto mode:

  • Scoped searches (a subreddit or author filter) and thread reads go to Arctic Shift — the fresher archive — with PullPush as an error-only fallback. When the fallback fires, the response says so in a fallback_used field.
  • Unscoped keyword searches across all of Reddit go to PullPush, because that is the only archive that supports them.

The plumbing absorbs the archives' quirks: every request carries an identifying User-Agent (live testing showed Arctic Shift throttles anonymous clients into a shared bucket), transient throttle responses get one bounded retry, and PullPush's rate-limit messages pass through verbatim so you see the real reason instead of a generic error. A REDDIT_SEARCH_TIMEOUT_MS environment variable overrides the 30-second per-request cap if your pipeline needs a different budget.

Honest Caveats

Archive data has edges, and we would rather document them than let you find them:

  • Very fresh content reads low. The archives capture posts the moment they appear, so scores and comment counts of content less than ~36 hours old often read 0 or 1. The content is there; the vote tallies have not caught up.
  • PullPush has post-2023 gaps. An empty unscoped search does not prove the content does not exist. Scope to a subreddit or author when you can — it routes you to the more complete archive.
  • Deleted content may persist in archives. That is inherent to how archives work, and it cuts both ways: it is also why researchers use them.

Using It From MCP and REST

In an MCP client — Claude Desktop, Claude Code, Cursor — just ask: "Search r/webdev for discussions about scraping infrastructure from the last month and summarize the top complaints." The agent picks reddit_search, scopes it, and chains the summary itself.

From the REST API, it is one authenticated POST:

Typescript
const response = await fetch('https://crawlforge.dev/api/v1/tools/reddit_search', {
  method: 'POST',
  headers: {
    'X-API-Key': process.env.CRAWLFORGE_API_KEY!,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    query: 'best mechanical keyboard',
    subreddit: 'MechanicalKeyboards',
    mode: 'posts',
    limit: 10,
  }),
});

const { data } = await response.json();
console.log(`${data.count} posts via ${data.source}`);

You can also try it with zero setup in the playground — reddit_search is live there alongside the other 27 tools.

What About the Reddit Thread Template

scrape_template still ships its reddit-thread template, but it points at reddit.com — the very wall this release routes around — so it no longer works reliably. The scrape_template docs now say exactly that and point Reddit work at reddit_search instead. The other nine templates (Amazon, GitHub, YouTube, Hacker News, and friends) are unaffected.

Also Since v5.0.4

If you skipped the patch between releases, v5.0.5 fixed two numbers serp_rank had been asserting wrongly: the DataForSEO request timeout (now 120 seconds by default, tunable via DATAFORSEO_TIMEOUT_MS, because live Google scrapes at depth 100 routinely take 30-60+ seconds) and the documented upstream cost (the old figure was the depth-10 price, 10× lower than the depth-100 default actually bills). It also fixed the Smithery listing, which now derives its tool table from the live registry instead of a hand-written card. The full story of the v5.0.x hardening cycle is in the v5.0.4 live-testing post.

Credit Cost

reddit_search costs 2 credits per call — search or full thread read, same price. For scale: the free plan's 1,000 starter credits cover 500 Reddit searches, and a search plus a thread read plus summarize_content on the result is 8 credits end to end. As always, failed requests are not charged.

How to Upgrade

Bash
npm install -g crawlforge-mcp-server@latest
crawlforge --version   # 5.1.0

Or, if your MCP client launches the server with npx, it picks up 5.1.0 automatically on the next restart. No schema, output-shape, or credit-cost changes to any existing tool — this is a drop-in upgrade.

Ready to mine Reddit discussions without an API key? Start free with 1,000 credits — enough for 500 searches — and read the reddit_search API reference for every parameter and mode.

Try this yourself — no signup needed

Run any of CrawlForge's 28 scraping and extraction tools in the playground, then start free with 1,000 credits.

1,000 free credits • One-time • No credit card required

Tags

releasev5.1.0redditreddit_searchMCPweb scrapingchangelog

About the Author

C

CrawlForge Team

Engineering Team

Building the most comprehensive web scraping MCP server. We create tools that help developers extract, analyze, and transform web data for AI applications.

Stay updated with the latest insights

Get tutorials, product updates, and web scraping tips delivered to your inbox.

No spam. Unsubscribe anytime.

Put this into practice

Test CrawlForge's tools on any URL — free, no signup.

On this page

Frequently Asked Questions

Does CrawlForge use the official Reddit API for reddit_search?+

No. reddit_search never touches reddit.com or the official Reddit Data API. It queries two community-run archives — Arctic Shift, which ingests Reddit in near-real-time, and PullPush, the Pushshift-compatible archive — so it needs no Reddit API key, no OAuth app, and no approval request. That matters more since November 2025, when Reddit closed self-service API signup and made new official credentials approval-gated.

Why can I not just scrape reddit.com directly?+

reddit.com runs a layered block: datacenter IP reputation, TLS fingerprinting evaluated at the handshake, and a JavaScript challenge. CrawlForge verified this live — a plain fetch with a browser User-Agent, old.reddit.com, the reddit-thread scrape template, and even stealth_mode at its most advanced level all return 403. The block is infrastructure-level, which is why reddit_search reads community archives instead of fighting it.

How fresh is the Reddit data from reddit_search?+

Arctic Shift ingests content in near-real-time — during live testing it returned a post created the same day. One caveat: because the archive captures posts the moment they appear, vote scores and comment counts of content less than about 36 hours old often read 0 or 1 even though the content itself is fully searchable. Every response carries provenance notes stating which archive answered and its freshness characteristics.

Can reddit_search search across all of Reddit, or only one subreddit?+

Both. An unscoped keyword query searches all of Reddit through PullPush, which supports full-text search but has documented gaps in its post-2023 archive. Scoping the search to a subreddit or author routes it to Arctic Shift, the fresher and more reliable archive, with PullPush as an automatic fallback. For thorough results, prefer scoped searches when you know where the discussion lives.

What does reddit_search cost and how do I try it?+

reddit_search costs 2 credits per call, whether it is a posts search, a comments search, or a full thread read. Failed requests are never charged. The free plan includes 1,000 one-time credits — 500 searches — and the tool is available over MCP, the REST API at /api/v1/tools/reddit_search, and the browser playground with no setup. Upgrade to v5.1.0 with npm install -g crawlforge-mcp-server@latest.

Does the reddit-thread scrape_template still work?+

Not reliably. The reddit-thread template targets reddit.com directly, which now 403-blocks scrapers at the infrastructure level, so it fails the same way every direct path does. It remains listed for compatibility, but the documentation now steers all Reddit extraction to reddit_search, which reads the community archives and returns the same kind of normalized thread data — post, nested comments, scores, and permalinks.

Related Articles

CrawlForge v5.0.4: 34 Fixes From Live-Testing 27 MCP Tools
Product Updates

CrawlForge v5.0.4: 34 Fixes From Live-Testing 27 MCP Tools

Four patch releases in one day: we live-tested all 27 MCP tools and every CLI subcommand against real websites and fixed all 34 defects we found.

C
CrawlForge Team
|
Aug 20
|
10m
CrawlForge v5.0.0: Security, Correctness, MCP Spec
Product Updates

CrawlForge v5.0.0: Security, Correctness, MCP Spec

CrawlForge MCP v5.0.0 bundles a seven-phase security and correctness remediation: zero npm audit vulnerabilities, 914 tests, and full MCP spec adoption.

C
CrawlForge Team
|
Aug 13
|
12m
CrawlForge v4.8.0: Claude Skills That Auto-Activate
Product Updates

CrawlForge v4.8.0: Claude Skills That Auto-Activate

CrawlForge MCP v4.8.0 ships 7 auto-activating Claude Agent Skills for its 26 tools, enforced SSRF protection, working screenshots, a design-token branding format, and built-in scheduled change monitoring.

C
CrawlForge Team
|
Jun 28
|
8m

Footer

CrawlForge MCP

Enterprise web scraping for AI Agents. 28 specialized MCP tools designed for modern developers building intelligent systems.

Product

  • Features
  • Playground
  • Pricing
  • Use Cases
  • Integrations
  • Alternatives
  • Changelog

Resources

  • Getting Started
  • API Reference
  • Templates
  • Guides
  • Blog
  • Glossary
  • FAQ
  • Sitemap

Developers

  • MCP Protocol
  • Claude Desktop
  • Cursor IDE
  • LangChain
  • LlamaIndex

Company

  • About
  • Contact
  • Privacy
  • Terms
  • Acceptable Use
  • Cookies

Stay updated

Get the latest updates on new tools and features.

Built with Next.js and MCP protocol

© 2025-2026 CrawlForge. All rights reserved.