reddit-rss-mcp
Enables browsing subreddits (hot, new, top, rising, controversial), searching posts globally or within a subreddit, and reading comments on posts via Reddit's RSS feeds, without requiring API keys or authentication.
Provides access to Reddit's RSS feeds, allowing retrieval of subreddit posts, search results, and comments in Atom XML format, parsed without external dependencies.
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-rss-mcpshow me the hot posts in r/selfhosted"
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-rss-mcp
A tiny, dependency-free MCP server that reads Reddit through its still-open RSS feeds. No API key, no OAuth, no scraping service.
Why this exists
As of 2025–2026, Reddit blocks anonymous access to its JSON API at the network-security layer. A plain request to www.reddit.com/r/.../hot.json returns a 403 "blocked by network security" page — and this happens from residential IPs, VPNs, and even commercial residential-proxy scrapers. Self-service API key creation also ended (Responsible Builder Policy, pre-approval now required).
But Reddit's RSS feeds and search RSS still return 200. This server uses only those, so it works with zero credentials, even from a blocked IP.
Related MCP server: reddirect
Tools
Tool | What it does |
| Search posts (globally or within one subreddit). |
| Fetch a subreddit's posts (hot/new/top/rising/controversial). |
| Read the user comments on a post (flat list). |
Each returns clean JSON: title, author, link, subreddit, date, and a text excerpt.
Install
Requires Node.js 18+ (uses the built-in fetch). No npm install needed.
Claude Desktop / Claude Code
Add to your MCP config (claude_desktop_config.json, or ~/.claude/settings.json for Claude Code).
Run directly from GitHub (no install step):
{
"mcpServers": {
"reddit-rss": {
"command": "npx",
"args": ["-y", "github:ninjackster/reddit-rss-mcp"]
}
}
}Or run from a local clone:
{
"mcpServers": {
"reddit-rss": {
"command": "node",
"args": ["/absolute/path/to/reddit-rss-mcp/server.js"]
}
}
}Restart the app (quit fully, then relaunch) to load the server.
Usage examples
Search r/technology for "local LLM" sorted by new.
Show me the hot posts in r/selfhosted.
Read the comments on this post: https://www.reddit.com/r/technology/comments/abc123/title/
Limitations (RSS, not the API)
Comments are flat — no parent/child threading.
No scores — RSS carries no upvote/downvote counts.
~25 results per call — RSS feed cap.
For nested comment trees, scores, and unlimited depth you need Reddit's authenticated API (an approved OAuth app). This server is the no-credentials option that covers search, browse, and comment reading.
How it works
It maps tool calls to Reddit RSS endpoints:
Browse:
https://www.reddit.com/r/<sub>/<sort>.rssSearch:
https://www.reddit.com/search.rss?q=<q>(addrestrict_sr=1for a single subreddit via/r/<sub>/search.rss)Comments:
<post-permalink>.rss
It parses the Atom XML with no external dependencies and speaks MCP over stdio (JSON-RPC 2.0).
License
MIT
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
- AlicenseBqualityCmaintenanceAn MCP server that provides both read-only and authenticated access to Reddit content and interactions without requiring a developer API key. It enables users to browse posts, search subreddits, and perform write actions like commenting and voting by leveraging browser session cookies.Last updated81The Unlicense
- AlicenseAqualityBmaintenanceReddit MCP Server — No API Keys Required. Browse, post, comment, vote, and manage your Reddit account from any MCP client.Last updated202MIT
- Alicense-qualityDmaintenanceA read-only MCP server that connects to the Reddit Data API to search posts, browse subreddits, read comments, view user profiles, and check trending content through the Model Context Protocol.Last updated271MIT
- Alicense-qualityCmaintenanceRead-only MCP server for public Reddit content using TypeScript. Enables listing posts, fetching post details and comments, and searching Reddit.Last updated301MIT
Related MCP Connectors
Reddit MCP — public Reddit data via JSON endpoints (no auth required)
A MCP server built for developers enabling Git based project management with project and personal…
A basic MCP server to operate on the Postman API.
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/ninjackster/reddit-rss-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server