reddit-leads-mcp
Allows searching Reddit for posts, scoring them for buying intent, and fetching full threads with comments.
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-leads-mcpsearch r/SaaS and r/startups for churn tool requests, score, show top 3 threads"
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-leads-mcp
An MCP server that turns Claude (or any MCP client) into a Reddit lead-finding agent: search for buying-intent conversations, score them against your product, and read full threads before drafting a reply.
Extracted from the scoring pipeline behind RedProwler.
Tools
Tool | What it does |
| Search recent posts by query, optionally restricted to subreddits |
| Two-phase lead scoring: lexical pre-score on every post, Claude semantic scoring for posts that clear the threshold |
| Fetch a post with its top comments for full context |
A typical session: "search r/SaaS and r/startups for people asking about churn tools, score them against my product, and show me the top three threads."
Related MCP server: systemprompt-mcp-reddit
Why two-phase scoring
Sending every scraped post to an LLM is slow and expensive, and most posts are obviously irrelevant. The pre-score is a lexical pass (keyword coverage plus buying-intent phrasing like "looking for", "alternative to", "willing to pay") capped at 0.5. Only posts above an escalation threshold get a Claude call, which returns a 0 to 1 semantic score behind strict JSON extraction and range clamping. If the API is down or returns something unparseable, the post keeps its pre-score instead of failing the run. In RedProwler this design cut scoring costs roughly in half with no measurable recall loss.
Without an ANTHROPIC_API_KEY, the server still works: everything is ranked by pre-score alone.
Setup
Requires Node 18+.
Claude Desktop / Claude Code
{
"mcpServers": {
"reddit-leads": {
"command": "npx",
"args": ["-y", "github:thetomtoro/reddit-leads-mcp"],
"env": {
"REDDIT_CLIENT_ID": "...",
"REDDIT_CLIENT_SECRET": "...",
"ANTHROPIC_API_KEY": "sk-ant-..."
}
}
}
}Reddit credentials come from a free "script" app at reddit.com/prefs/apps; the server uses the client-credentials grant against oauth.reddit.com. Without them it falls back to the public JSON endpoints, which Reddit rejects from many networks these days, so credentials are recommended. ANTHROPIC_API_KEY is optional; omit it to run lexical-only scoring.
From source
git clone https://github.com/thetomtoro/reddit-leads-mcp
cd reddit-leads-mcp
npm install
npm run build
npm testPoint your MCP client at node dist/index.js over stdio.
Notes
Read-only. OAuth when credentials are set, public JSON otherwise, always with a descriptive User-Agent. Be polite with request volume; this is for finding conversations worth joining, not mass scraping.
REDDIT_LEADS_MODELoverrides the scoring model (default: Claude Haiku).Scoring internals live in
src/scoring.tsand are covered by unit tests that run fully offline.
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
- Alicense-qualityDmaintenanceA Model Context Protocol server that enables AI assistants like Claude to browse and analyze Reddit content, including searching subreddits, retrieving post details with comments, and viewing trending posts.9MIT
- Alicense-qualityDmaintenanceA specialized MCP server that enables AI agents to interact with Reddit, including reading posts, creating content, and managing subreddit configurations.26310Apache 2.0
- AlicenseAqualityBmaintenanceMCP server to dynamically load Claude Code skills into AI agents55614MIT
- Alicense-qualityAmaintenanceA local-first MCP server that helps Claude Code prioritize your work by searching across your tools like GitHub and Slack.7MIT
Related MCP Connectors
Agentic Reddit/HN buying-signal detection for Claude Code, Cursor, and Windsurf via MCP.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Reddit & X data for AI agents over MCP. Semantic search, hosted, no Reddit 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/thetomtoro/reddit-leads-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server