Overview

GTM Alpha provides access to professional go-to-market analysis tools via the Model Context Protocol (MCP). These tools integrate seamlessly with AI assistants like Claude, Cursor, and other MCP-compatible clients.

๐ŸŽ‰
Free during testing
All MCP tools and the API are free while GTM Alpha is in testing. No payment is required.

What You Can Do

  • Get a GTM consultation summary using the EPIC framework
  • Get EPIC framework scores for a GTM situation
  • Generate a GTM implementation roadmap

MCP Setup

Add GTM Alpha to your MCP-compatible client by configuring the server endpoint.

Server URL: https://gtmalpha.gtmhelix.com/mcp. Transport: Streamable HTTP (POST requests, JSON responses). Authentication: none. The older address /mcp-sse answers the same way.

Claude (web, desktop and mobile)

Open Customize, then Connectors, then Add custom connector. Enter the server URL above, choose no sign-in, then Add.

Claude Code

Shell
claude mcp add --transport http gtm-alpha https://gtmalpha.gtmhelix.com/mcp

Run locally (npm, stdio)

JSON
{
  "mcpServers": {
    "gtm-alpha": {
      "command": "npx",
      "args": ["-y", "@shashwatgtmalpha/gtm-alpha-mcp-server"]
    }
  }
}

Cursor / VS Code

JSON
{
  "mcp": {
    "servers": {
      "gtm-alpha": {
        "url": "https://gtmalpha.gtmhelix.com/mcp"
      }
    }
  }
}
๐Ÿ’ก
Tip: After configuration, restart your client to load the GTM Alpha tools.

Available Tools

GTM Alpha provides the following MCP tools, all free:

gtm_consultation (GTM Consultation) FREE
A GTM consultation summary using the EPIC framework (Ecosystem, Product-Led, Inbound/Outbound, Community): scores from 1 to 10 per motion, the primary and secondary motion, and any warnings. Required input: gtm_challenge. Optional: company_name, business_stage, industry. Optional EPIC inputs: acv_usd, deal_cycle_days, nrr_percent, tam_accounts, self_serve, deal_source, geography, current_channels. Without them the result is marked preliminary. Read-only.
epic_audit (EPIC Audit) FREE
EPIC framework scores from 1 to 10 for each motion, the primary and secondary motion, warnings, notes, and the list of rules that set each score. Required input: challenge. Optional: industry, business_stage. Optional EPIC inputs: acv_usd, deal_cycle_days, nrr_percent, tam_accounts, self_serve, deal_source, geography, current_channels. Without them the result is marked preliminary. Read-only.
generate_roadmap (GTM Roadmap) FREE
A GTM implementation roadmap for one EPIC component. Required input: primary_focus (E, P, I or C). Optional: timeframe (30-day, 60-day or 90-day). Read-only.

API Endpoints

POST /mcp
MCP endpoint (Streamable HTTP, stateless). Send JSON-RPC 2.0 messages with POST; each reply is a single JSON response. Other methods return 405. The older address /mcp-sse answers the same way.
POST /api/epic-audit
REST endpoint for an EPIC maturity audit. Returns JSON. The inputs you send are stored with the result; see the privacy policy.
POST /api/premium-audit
Used by the Premium Audit form. Takes the form's fields (form-encoded or JSON) and returns the report as an HTML page. Nothing is stored.

Rate limits: the /api paths share 30 requests a minute per visitor, and the MCP server allows 300 a minute. Over a limit, the answer is 429 (Too Many Requests).

Authentication

No authentication is required. All tools are free to use.

๐Ÿ”“
No API Key Required
Simply connect to the MCP endpoint and start using the tools immediately.

Limits and when not to use GTM Alpha

All three tools are read-only and return analysis as text. Scores run from 1 to 10; without the optional inputs (contract value, deal cycle, net revenue retention, target accounts, self-serve, deal source, region) the result is marked preliminary. The MCP endpoint answers POST requests only; other methods return 405. GTM Alpha is not the right tool for:

  • Teams that want an AI-written strategy: the EPIC scores follow fixed rules from the documented rubric, and no AI model writes them.
  • Companies that cannot share basic numbers: without contract value, deal cycle, net revenue retention and target account count, the result is marked preliminary.
  • Anyone who needs live market data: GTM Alpha looks nothing up and works only from what you enter.
  • Anyone who needs a tool that writes to a CRM or other systems: all three tools are read-only and return analysis only.

Usage Examples

Using with Claude

Once configured, simply ask Claude to use GTM Alpha tools:

Prompt
Use the GTM Alpha epic_audit tool to score the GTM situation of
a B2B SaaS company in the HR tech space selling an AI recruitment
platform to mid-market companies (100-1000 employees).

MCP request example (cURL)

cURL
curl -X POST https://gtmalpha.gtmhelix.com/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "epic_audit",
      "arguments": {
        "challenge": "B2B SaaS in HR tech selling to mid-market companies",
        "industry": "HR Tech",
        "business_stage": "series-a",
        "acv_usd": 24000,
        "deal_cycle_days": 60,
        "nrr_percent": 105,
        "tam_accounts": 8000,
        "deal_source": "outbound",
        "geography": "india"
      }
    }
  }'