Read Reddit via public RSS feeds: browse subreddits, posts, comments, and search. No auth.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Read Reddit from local MCP-compatible clients, including Claude Code and Codex, without an API key. No app registration, no account.
Reddit's data API is effectively closed. New apps need a stated moderation use
case and manual approval, anonymous .json access is blocked, and the free tier
that third-party tools were built on is gone. Most "Reddit for LLMs" integrations
now start with a credentials dance you can't complete.
Reddit still publishes public Atom/RSS feeds for every subreddit, thread, user and search. This is a small local MCP server that reads those feeds and hands your compatible client the fields that matter: browse a subreddit, read a thread and its comments, search across the site.
Those feeds are published to be fetched, which is why this keeps working. It reads a supported path in a format frozen since 2005, so there is no markup to break when Reddit ships its next redesign.
What you don't get: scores, upvote ratios, comment counts. Those exist only in the gated API, and nothing here fakes them. Titles, authors, timestamps, and the full text of posts and comments all come through.
reddit-rss-mcp is on PyPI (the plain reddit-mcp name belongs to an unrelated
project). You need uv on your machine; it handles
Python and dependencies itself, and there is nothing else to set up.
Claude Code:
Verify with claude mcp list (should show reddit: β Connected). If Claude can't
find uvx, use its absolute path (which uvx) instead of the bare command.
Codex CLI:
Verify with codex mcp list. To use a local checkout instead, run:
Codex also supports a project-scoped .codex/config.toml, but this repository
does not include one because it would configure and launch the server
automatically for every trusted checkout.
Claude Desktop, one click: download reddit-rss-mcp.mcpb from the
latest release and drag it
into Settings β Extensions. No JSON editing, no absolute paths. (It runs
uvx reddit-rss-mcp, so uv still needs to be on your PATH.)
Claude Desktop & Cowork, manual config: add this to
~/Library/Application Support/Claude/claude_desktop_config.json, using the
absolute path from which uvx (the app doesn't inherit your shell PATH):
If the file already has other top-level keys, add mcpServers alongside them
rather than overwriting the file. Then:
Cmd+Q, not just closing the window). The running app
rewrites this file, so an edit made while it's open can be discarded.Don't use a Custom Connector (the "add server by URL" option) for a local server. Those are dialed from Anthropic's cloud and can't reach
localhost, no matter the cert or tunnel. The config-file method above spawns the server on your own machine, which is what works.
| Tool | What it does |
|---|---|
search_reddit(query, subreddit=None, sort="relevance", time_filter="all", limit=25) | Search Reddit discussions for real user opinions and experiences on a topic. |
browse_subreddit(subreddit, sort="hot", time_filter="day", limit=25) | What a community is posting right now (hot/new/top/rising/controversial). |
get_post(url, comment_limit=50) | One thread in full: the post plus its comments (a flat list; the reply tree isn't in the feed). |
fetch_json(url) | The remaining Reddit feed shapes: /user/<name>, multireddits, /domain/<site>. |
fetch_json is deliberately not a general web fetcher. URLs on other hosts are
refused unless you start the server with REDDIT_MCP_ALLOW_ANY_URL=1, so an
unrelated fetch tool doesn't sit in the client's tool list waiting to be picked at the
wrong moment.
main, no clone)To run unreleased changes, point uvx at the repo and the reddit-rss-mcp entry
point. Append @v1.1.2 (or any tag) to pin a release instead of tracking main:
Prefer this if you want to edit the code:
For Claude Desktop & Cowork, the same config file as above, with absolute paths
from which uv and pwd:
The server is a long-lived process, spawned once when the client connects. Editing
server.py does not hot-reload it; the running process keeps the old code until
it's restarted.
/mcp, select reddit, and reconnect it (or restart Claude
Code)./mcp and restart the server if needed.Cmd+Q) and relaunch.Read-only, public content only. Be considerate with request volume; these are public feeds.
No scores, vote counts, or comment counts. RSS doesn't carry them. For those you need Reddit's Data API, which now requires a moderation use case and approval.
Rate limiting. Reddit throttles unauthenticated RSS aggressively. On an HTTP
429 the server retries with backoff, honoring the Retry-After header when present
and otherwise sleeping roughly 2, 4, 8, 16, 32, 64, 128 seconds (plus jitter) across
up to 7 retries. It also keeps a minimum gap between outbound requests to avoid
tripping the limit in the first place. All tools share this.
Search is only as good as Reddit's search. search_reddit uses Reddit's own
search engine; RSS is just the output format, so results match the website, not a
separate weaker index. That engine has real limits:
browse_subreddit(sort="new").So "no results" means Reddit's search didn't surface it, not that it was never posted.
MIT. See LICENSE.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/reddit-rss)<a href="https://allmcps.com/mcp/reddit-rss"><img src="https://allmcps.com/api/badge/reddit-rss?style=directory" alt="Reddit (RSS) on AllMCPs" /></a>