budprat/AI-Ideas-MCP
If you are the rightful owner of AI-Ideas-MCP and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
A Model Context Protocol (MCP) server built with xmcp, designed to enhance AI and developer workflows with tools like Hacker News RSS feeds and Reddit pain point research.
MCP Server on Replit
A Model Context Protocol (MCP) server built with xmcp, featuring tools for AI/developer workflows including Hacker News RSS feeds and Reddit pain point research.
🚀 Getting Started
Running on Replit
- Set SESSION_SECRET - Add
SESSION_SECRETto your Replit Secrets (use any random string) - Click Run - Start the server
- View Homepage - See all available tools, prompts, and resources
- Connect Your MCP Client - Use the configuration shown on the homepage (use your SESSION_SECRET value)
⚠️ Note: The Reddit research tool won't work on Replit due to IP blocking.
Running Locally (Recommended)
For full functionality including Reddit pain point research:
📖 See for complete instructions
Quick start:
git clone <your-replit-url> # Replace with your actual Replit URL
cd <project-name> # Replace with your folder name
npm install
export SESSION_SECRET="mySecretKey2024" # Replace with your own secret key
npm start
Important: Use the same SESSION_SECRET value when connecting your MCP client!
🛠️ Available Tools
- get-ai-hackernews - Fetches AI-related articles from Hacker News via RSS
- research-reddit-pain-points - Basic Reddit pain point analyzer (local only)
- research-reddit-pain-points-enhanced ⭐ NEW! - Advanced market research tool with:
- Sentiment scoring (0-10 scale for pain intensity)
- Category detection (UX, Pricing, Performance, etc.)
- Competitor tracking and switching signals
- Urgency detection (low/medium/high/critical)
- Price sensitivity analysis
- Skill-matched project ideas (Python, DevOps, Next.js, AI/ML)
- Optional AI-powered custom ideas via GPT-4o-mini
- Perfect for validating AI/tech product ideas!
- get-server-info - Returns server capabilities and information
- greet - Simple greeting example
Note: Reddit tools work best when run locally (see LOCAL_SETUP.md)
🔌 Connecting Your MCP Client
{
"mcpServers": {
"my-replit-mcp-server": {
"url": "https://[my-url.replit.app]/mcp",
"headers": {
"x-api-key": "your-session-secret"
}
}
}
}
That's it! Your MCP server is ready to use.
📝 What You Get
- ✅ Beautiful custom homepage with tool listings
- ✅ API key authentication (via
SESSION_SECRET) - ✅ AI Hacker News RSS feeds
- ✅ Reddit pain point research (when run locally)
- ✅ Auto-discovered tools, prompts, and resources
- ✅ MCP protocol endpoint at
/mcp
🏗️ Development
npm run dev # Development with hot-reload
npm run build # Build for production
npm start # Run production server
Adding New Tools
- Create a file in
src/tools/ - Run
npm run build - Tool is auto-discovered and registered
📚 Documentation
- Full Documentation:
- Local Setup Guide:
- xmcp Documentation
- MCP Specification