Skip to content

Releases: QuantToGo/quanttogo-mcp

v0.2.0 — Agent Self-Service Trial + Signals API

12 Mar 21:52

Choose a tag to compare

What's New

AI Agents can now self-register for a free trial and query live trading signals — entirely within the conversation. No manual email, no waiting.

New Tools (3)

Tool What it does
register_trial Register with email → get API key instantly (30-day free trial)
get_signals Fetch latest buy/sell signals for any strategy
check_subscription Check trial status and remaining days

Full Agent Flow

User: "I want to try QuantToGo signals"
AI → register_trial({ email: "user@example.com" })
   → { apiKey: "qtg_xxx", inviteCode: "AIMCP-R7K2", trialEnd: "2026-04-11" }

User: "Show me the latest signals for US panic dip-buying"
AI → get_signals({ apiKey: "qtg_xxx", productId: "PROD-E3X" })
   → { signals: [{date, time, direction, symbol, price}, ...] }

Deployment

  • npm: npx quanttogo-mcp (stdio, for Claude Desktop / Claude Code)
  • Remote HTTP: https://mcp-us.quanttogo.com:8443/mcp (Streamable HTTP)
  • Remote SSE: https://mcp.quanttogo.com/sse (for Coze / legacy clients)

Stats

  • 8 tools + 1 resource
  • 8 live strategies (4 US, 4 A-Share)
  • All performance forward-tracked from live signals

See CHANGELOG-v0.2.0.md for implementation details.