reddit-mcp
Provides tools for searching subreddits, finding posts, and retrieving thread comments on Reddit, enabling research and opinion gathering from Reddit communities.
Click on "Deploy 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-mcpSearch Reddit for best budget headphones under $100"
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
Local MCP server that turns Reddit into a research surface for Claude Desktop. Ask about travel itineraries, gear tradeoffs, "is X actually worth it" — the questions that resolve on Reddit and nowhere else.
Install
python3 -m venv .venv
.venv/bin/pip install -e .Related MCP server: Reddit MCP Server
Connect to Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"reddit": {
"command": "/Users/jay/dev/general/reddit-mcp/.venv/bin/reddit-mcp"
}
}
}Restart Claude Desktop. There is no server to start yourself — Desktop spawns the process over stdio.
Tools
Tool | Use |
| Locate the right community first. Search quality improves sharply once scoped. |
| Find candidate threads. Optionally scoped to a subreddit. |
| Better recall than search when you already know the community. |
| Read a thread's comments — where the opinions actually are. Takes a bare id, a |
get_thread is budgeted: max_comments caps count, char_budget caps total
size. The submission may take at most POST_BODY_SHARE (40%) of the budget, so a
long guide post can never crowd the comments out.
Why the Atom feeds
Reddit closed self-service Data API registration in November 2025. New app
creation now requires a valid moderation use case, which personal research is
not, and there are no grandfathered credentials on this account. The public
.json endpoints answer 403 "blocked by network security" to every non-browser
client, on every host, from any user agent.
The .rss feeds are the one public surface that still serves plain HTTP clients.
Everything here goes through them.
What that costs
Not recoverable from Atom, at any price:
post and comment scores — no
min_scorefiltering, and no score showncomment counts
parent/child links between comments — so no
max_depth, and threads read flat rather than nested
Ranking is still Reddit's own, requested via sort= and applied server-side. You
lose the score numbers, not the ordering.
Rate limits
The feeds throttle hard — a cold request answers 429 more often than not and
needs several seconds of backoff. The client therefore enforces a minimum interval
between requests, retries with exponential backoff, and caches by URL (threads
24h, searches 6h, listings 1h). Throttling and caching are load-bearing here, not
optimisations.
Tests
.venv/bin/python -m pytestShaping tests run against captured fixtures in fixtures/ and never touch the
network. Re-capture only if the feed format changes:
python3 tests/capture_fixtures.pyIf Data API access ever lands
The fetch layer (client.py) is the only module that knows about RSS. Shaping,
budgets and the tool surface sit above it. Swapping in an OAuth client against
oauth.reddit.com restores scores and comment nesting without touching the rest.
This server cannot be deployed
Maintenance
Related MCP Connectors
Read-only Reddit search API for AI agents: posts, comments, comment trees, subreddit rules.
Browse and manage Reddit posts, comments, and threads. Fetch user activity, explore hot/new/rising…
Reddit posts, comments, subreddits, and search for AI agents. Free key, self-minted, no signup.
Connect Claude or any MCP client to Thread Otter, a GTM agent for founders. Free tools with no key: find_buyer_threads (give it a website URL and get recent Reddit threads where that product's buyers are asking for it, report in ~3 minutes), reddit_demand_board (weekly demand across 40 communities with thread receipts), and subreddit_rules (promotion posture for 2,000+ profiled subreddits). With an API key: read your buying-intent mentions across Reddit, X, LinkedIn, and Bluesky, check your pipeline, and propose posts and reply drafts in your voice. Propose-only by design: nothing sends without your approval flow. Keys at threadotter.com/connect.
Related MCP Servers
- AlicenseNot gradedqualityNot gradedmaintenanceEnables AI assistants to interact with Reddit by searching subreddits, retrieving hot posts, and fetching detailed post information with comments through the Reddit API.-
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to search, read, and analyze Reddit content, including posts, comments, subreddits, and user profiles using natural language commands. It provides atomic tools for interacting with the Reddit API to retrieve trending topics and community metadata.MIT
- AlicenseAqualityDmaintenanceEnables Claude to search Reddit posts, monitor subreddits, read comments, and scan multiple communities for keyword matches via structured tools.4465MIT
- AlicenseNot gradedqualityCmaintenanceEnables reading public Reddit posts and comments on demand, with tools to search, get recent posts, post details, top comments, and server status. Runs on Cloudflare Workers for use with Claude and Open WebUI.MIT