community-research-mcp
Allows searching Reddit posts and reading Reddit threads and comments, returning structured JSON output for LLM consumption.
Click on "Deploy 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., "@community-research-mcpsearch Reddit for recent posts about D54 burst delay in r/MarathonTheGame"
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.
Community Research MCP
MCP server for researching community discussions (Reddit focus).
Features
Search Reddit posts
Read Reddit threads and comments
Structured JSON output optimized for LLM consumption
Related MCP server: reddit-mcp
Installation
pip install -e .Configuration
Create a .env file with your Reddit API credentials:
cp .env.example .env
# Edit .env with your credentialsTo get Reddit credentials:
Click "Create App" or "Create Another App"
Select "script" for personal use
Fill in name and redirect URI (http://localhost:8080)
Copy the client ID (under app name) and secret
Usage
Run MCP Server
# Development
mcp dev src/community_research_mcp/server.py
# Production
community-research-mcpTools
reddit_search_posts
Search Reddit for public posts.
{
"query": "D54 burst delay",
"subreddit": "MarathonTheGame",
"sort": "relevance",
"time_filter": "month",
"limit": 10
}reddit_read_thread
Read a Reddit post and its comment tree.
{
"url_or_id": "https://www.reddit.com/r/.../comments/...",
"comment_sort": "best",
"max_comments": 80,
"max_depth": 4
}Testing
pip install -e ".[dev]"
pytestQwenPaw Integration
Add to your mcp_config.json:
{
"community-research-mcp": {
"command": "community-research-mcp",
"env": {
"REDDIT_CLIENT_ID": "your_client_id",
"REDDIT_CLIENT_SECRET": "your_client_secret",
"REDDIT_USER_AGENT": "community-research-mcp:v0.1.0 (by /u/yourusername)"
}
}
}License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Reddit MCP server: search posts, subreddit feeds, comments & user profiles as JSON. No API key.
Reddit MCP — public Reddit data via JSON endpoints (no auth required)
Your agent needs to know what a community actually thinks — which subreddit is discussing your category, what the top posts argue, what the comment tree says underneath. **What you can ask for** • "Which subreddits discuss project-management tools, and how big are they?" • "Find posts complaining about Notion pricing in the last month." • "Read the full comment tree on this thread and summarise the disagreement." • "What is r/selfhosted posting about this week?" • "Search every community for mentions of our product name." **How to use it** Point any MCP client at https://mcp.aisa.one/reddit/mcp and sign in with OAuth — there is no key to create or paste. 5 read tools: search across all of Reddit or inside one subreddit, browse a subreddit's post stream, read a subreddit's details, and pull a post's comment tree. **It is also a door to the rest** The same login reaches 26 sources and 580+ operations. Find the complaint here, then ask the same agent what the competitor's traffic or backlinks look like — without adding a second server. **What it costs** Finding and inspecting an operation is free. Running one is billed per call at API prices, with no seat and no monthly minimum, and every call takes max_price_usd so an agent cannot overspend by accident. **Where else it reaches** https://mcp.aisa.one/social/mcp for X plus Instagram, Reddit, Pinterest and YouTube; https://mcp.aisa.one/gtm/mcp for those plus Similarweb and Apollo.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA 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
- AlicenseBqualityDmaintenanceAn 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.82-
- AlicenseNot gradedqualityDmaintenanceA 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.6 npm1MIT
- FlicenseBqualityCmaintenanceMCP server for compact Reddit research packs. Enables Reddit data extraction, search, and trend analysis through a set of tools like reddit_search and reddit_thread.7-