π₯
reddit-search
Enables 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.
0 installs
Trust: 34 β Low
Social
Ask AI about reddit-search
Powered by Claude Β· Grounded in docs
I know everything about reddit-search. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
reddit-search
MCP server for searching Reddit. No API key required.
Tools
search
Search Reddit posts globally or within a subreddit.
- query β Search query. Use
subreddit:NAMEprefix to limit to a subreddit. - sort β Sort order:
relevance,hot,top,new,comments(default: relevance). - time β Time filter:
hour,day,week,month,year,all(default: week). - limit β Number of results (1β100, default 10).
subreddit_posts
Get recent posts from a specific subreddit.
- subreddit β Subreddit name (without r/ prefix).
- sort β Sort order:
hot,new,top,rising(default: hot). - time β Time filter for
topsort (default: week). - limit β Number of results (1β100, default 10).
post_comments
Get comments from a specific Reddit post.
- url β Reddit post URL or permalink.
- sort β Comment sort:
confidence,top,new,controversial,old,qa(default: top). - limit β Number of top-level comments (1β100, default 20).
Setup
npm install
No API key needed. Uses Reddit's public JSON endpoints (~10 requests/minute).
Usage
npm start
The server runs on stdio using the Model Context Protocol.
MCP configuration
Add to your .mcp.json:
"reddit-search": {
"command": "npx",
"args": ["tsx", "src/index.ts"],
"cwd": "/path/to/reddit-search"
}
