AI-Ideas-MCP

budprat/AI-Ideas-MCP

3.1

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.

Tools
5
Resources
0
Prompts
0

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

  1. Set SESSION_SECRET - Add SESSION_SECRET to your Replit Secrets (use any random string)
  2. Click Run - Start the server
  3. View Homepage - See all available tools, prompts, and resources
  4. 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

  1. get-ai-hackernews - Fetches AI-related articles from Hacker News via RSS
  2. research-reddit-pain-points - Basic Reddit pain point analyzer (local only)
  3. research-reddit-pain-points-enhancedNEW! - 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!
  4. get-server-info - Returns server capabilities and information
  5. 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

  1. Create a file in src/tools/
  2. Run npm run build
  3. Tool is auto-discovered and registered

📚 Documentation


Built with ❤️ using xmcp on Replit