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.
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
claude mcp add --transport http gtm-alpha https://gtmalpha.gtmhelix.com/mcp
Run locally (npm, stdio)
{
"mcpServers": {
"gtm-alpha": {
"command": "npx",
"args": ["-y", "@shashwatgtmalpha/gtm-alpha-mcp-server"]
}
}
}
Cursor / VS Code
{
"mcp": {
"servers": {
"gtm-alpha": {
"url": "https://gtmalpha.gtmhelix.com/mcp"
}
}
}
}
Available Tools
GTM Alpha provides the following MCP tools, all free:
API Endpoints
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.
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:
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 -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"
}
}
}'