prompt-go-mcp

rahulraonatarajan/prompt-go-mcp

3.1

If you are the rightful owner of prompt-go-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 henry@mcphub.com.

Prompt Go is a smart AI workflow tool designed for Cursor Teams, offering intelligent routing, cost optimization, and adaptive learning to enhance team productivity.

๐ŸŽฏ Prompt Go โ€” Smart AI Workflow for Cursor Teams

Prompt smarter, spend less, work faster.

Transform your team's AI workflow with intelligent routing, real-time cost optimization, and adaptive learning. Prompt Go automatically routes each prompt to the most effective channel while providing actionable insights to reduce costs by 25-40%.

โœจ What Makes It Special for Cursor Teams

๐Ÿง  Invisible Intelligence

  • Zero-friction setup - Works seamlessly in Cursor with one command
  • Smart routing - Automatically suggests web/agent/ask/direct based on prompt analysis
  • Visual indicators - Subtle UI hints show routing confidence without interrupting flow
  • Adaptive learning - Gets smarter from your team's usage patterns

๐Ÿ’ฐ Proactive Cost Management

  • Real-time budget tracking with smart alerts before overruns
  • Automatic downgrades when approaching limits (soft enforcement)
  • Cost predictions based on current usage trends
  • Team efficiency scoring - see who's optimizing best

๐Ÿ“Š Team Insights Dashboard

  • Beautiful analytics at http://localhost:8000/insights/team/your-team
  • Savings tracking - see exactly how much smart routing saves
  • Weekly recommendations - auto-generated Cursor rules for your team
  • Performance benchmarking across team members

๐Ÿ”’ Privacy-First Design

  • 100% local processing - no data leaves your infrastructure
  • Prompt hashing - content never stored, only patterns analyzed
  • Team isolation - each org has separate database and config

๐Ÿš€ Quick Start for Cursor Teams

Automated Setup (Recommended - 2 minutes)

git clone https://github.com/rahulraonatarajan/prompt-go-mcp.git
cd prompt-go-mcp
python setup-cursor-team.py --org "Your Team Name" --budget 500

That's it! The script will:

  • โœ… Install dependencies and setup database
  • โš™๏ธ Configure Cursor MCP settings automatically
  • ๐Ÿ“‹ Create team-specific policy configuration
  • ๐Ÿงช Test the integration

Manual Setup (if needed)

python -m venv .venv && . .venv/bin/activate
pip install -e .
cp .env.example .env

Add to Cursor settings.json:

{
  "mcpServers": {
    "prompt-go": {
      "command": "python", 
      "args": ["-m", "apps.mcp_server"],
      "cwd": "/absolute/path/to/prompt-go-mcp",
      "env": {
        "DATABASE_URL": "sqlite+aiosqlite:///./promptgo_yourteam.db",
        "PG_ORG": "Your Team Name",
        "PG_ENABLE_LEARNING": "true",
        "PG_BUDGET_MODE": "soft"
      }
    }
  }
}

๐Ÿ“Š See It In Action

After setup, try these prompts in Cursor:

  • "What's the latest in React 19?" โ†’ ๐ŸŒ Web suggested
  • "Implement OAuth flow for our app" โ†’ ๐Ÿค– Agent mode
  • "Best practices for..." โ†’ ๐Ÿ’ฌ Ask for clarification
  • "Explain useState hook" โ†’ โšก Direct answer

Visit your team dashboard: http://localhost:8000/insights/team/your-team-name

๐ŸŽฏ Complete Documentation

๐Ÿ“– - Comprehensive setup and configuration
๐Ÿ”ง - Technical details and troubleshooting
๐Ÿ“Š Dashboard: Start with python -m apps.http_dashboard then visit localhost:8000