reddit-mcp
Allows reading Reddit content (subreddit posts, single posts with comments, and search results) via Reddit's public RSS feeds, with no authentication required.
Click on "Install 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-mcpshow me the top posts from r/programming today"
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
A small local MCP server that lets Claude read Reddit (and other JSON endpoints), refining the responses down to the fields that matter.
How it reaches Reddit: Reddit gates its Data API (new apps require a moderation use case + approval) and blocks anonymous
.jsonaccess, but it still publishes public Atom/RSS feeds for reading content. This server uses those — so it needs no account, no app, no API key, no login.Trade-off: RSS carries title, author, link, timestamp, and full post/comment text, but not scores, upvote ratios, or comment counts (those only live in the gated API).
Tools
Tool | What it does |
| Posts from a subreddit ( |
| A post plus its comments (flat list — RSS doesn't expose the reply tree). |
| Search Reddit, optionally scoped to one subreddit. |
| Reddit URLs → the |
Related MCP server: Reddit MCP Server
Requirements
uv— handles Python + deps.uv run server.pyprovisions an isolated env frompyproject.tomlon first run. No other setup.
Install
reddit-rss-mcp is published on PyPI (the plain reddit-mcp name belongs to an
unrelated project). Three ways to install it, easiest first.
From PyPI (recommended)
uvx reddit-rss-mcp fetches and runs the published package for you, no clone
needed. This is the preferred install.
Claude Code:
claude mcp add reddit -s user -- uvx reddit-rss-mcpClaude 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 it needs uv on your PATH.)
Claude Desktop & Cowork — manual config (fallback if you'd rather not use the
extension; add to claude_desktop_config.json using the absolute path from
which uvx, then follow the quit/relaunch steps below):
{
"mcpServers": {
"reddit": {
"command": "/absolute/path/to/uvx",
"args": ["reddit-rss-mcp"]
}
}
}From GitHub (latest 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:
claude mcp add reddit -s user -- uvx --from git+https://github.com/jorgen-k/reddit-mcp reddit-rss-mcpFrom a local clone
Prefer this if you want to edit the code. Clone it somewhere first:
git clone https://github.com/jorgen-k/reddit-mcp.git
cd reddit-mcpClaude Code
claude mcp add reddit -s user -- uv --directory "$(pwd)" run server.pyVerify with claude mcp list (should show reddit: ✓ Connected). If Claude
can't find uv, use its absolute path (which uv) instead of bare uv.
Claude Desktop & Cowork
Both use the same config file:
~/Library/Application Support/Claude/claude_desktop_config.json. Add a
mcpServers entry using absolute paths — the app doesn't inherit your shell
PATH. Get the values with which uv and pwd:
{
"mcpServers": {
"reddit": {
"command": "/absolute/path/to/uv",
"args": ["--directory", "/absolute/path/to/reddit-mcp", "run", "server.py"]
}
}
}If the file already has other top-level keys, add mcpServers alongside them —
don't overwrite the file.
Then:
Fully quit the app —
Cmd+Q, not just closing the window. The running app rewrites this file, so an edit made while it's open can be discarded.Relaunch. It may take a couple of restarts before the server registers.
Grant permission when the app prompts to run the server.
The Reddit tools then appear in the app.
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 locally on your machine, which is what works.
Updating after a code change
The server runs as a long-lived process that's 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. After any change, restart the server so
the new code takes effect:
Claude Code: run
/mcp, selectreddit, and reconnect it (or restart Claude Code).Claude Desktop & Cowork: fully quit the app (
Cmd+Q) and relaunch.
Notes
Read-only, public content only.
No scores/vote counts/comment counts (RSS limitation). For those you'd need Reddit's Data API, which now requires a moderation use case + approval.
Be considerate with request volume — these are public feeds.
Rate limiting
Reddit throttles its unauthenticated RSS feeds aggressively. On an HTTP 429 the
server transparently retries with backoff (honoring the Retry-After header
when present, otherwise exponential backoff with jitter) and only surfaces an
error after retries are exhausted. It also keeps a small minimum gap between
outbound requests to avoid tripping the limit in the first place. All tools
share this behavior. A 429 is retried up to 7 times, sleeping roughly
2, 4, 8, 16, 32, 64, 128 seconds (plus jitter) between attempts.
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 are identical to the website/API search, not a separate (weaker)
index. That engine has real limits:
It doesn't search comment text — only post titles and bodies (and community names). A term that only appears in a comment won't be found.
Very new posts lag — search indexing isn't instant. To catch brand-new posts reliably, use
browse_subreddit(sort="new")instead of search.It isn't exhaustive — low-relevance results get dropped or buried.
So a "no results" means "Reddit's search didn't surface it," not a guarantee it was never posted anywhere on the site.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceProvides access to Reddit's API for retrieving posts, comments, user information, and search functionality. Supports multiple authentication methods and comprehensive Reddit data operations including subreddit browsing, post retrieval, and user profile access.Last updated95211MIT
- Flicense-qualityDmaintenanceProvides AI assistants with read-only access to Reddit's API for browsing subreddits, reading posts and comments, searching Reddit, and retrieving user/subreddit information. Enables safe exploration of Reddit content without posting capabilities through natural language interactions.Last updated
- AlicenseAqualityBmaintenanceEnables AI assistants to browse Reddit, search posts, analyze user activity, and fetch comments without requiring API keys. Features smart caching, clean data responses, and optional authentication for higher rate limits.Last updated252,613770MIT
- Alicense-qualityDmaintenanceEnables searching Reddit posts, fetching subreddit content, and retrieving post comments without requiring an API key. It uses public JSON endpoints to provide seamless access to Reddit data for LLM-based applications.Last updated16MIT
Related MCP Connectors
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.
Reddit MCP — public Reddit data via JSON endpoints (no auth required)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jorgen-k/reddit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server