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 API endpoints are FREE during our launch period. No payment required.
What You Can Do
- Analyze company GTM strategies using the EPIC framework
- Audit digital presence and market positioning
- Generate implementation roadmaps
- Access market intelligence and competitive analysis
MCP Setup
Add GTM Alpha to your MCP-compatible client by configuring the server endpoint.
Claude Desktop Configuration
Add the following to your Claude Desktop configuration file:
{
"mcpServers": {
"gtm-alpha": {
"command": "npx",
"args": ["-y", "@anthropic/remote-mcp-server",
"https://gtm-alpha.netlify.app/mcp-sse"]
}
}
}
Cursor / VS Code
{
"mcp": {
"servers": {
"gtm-alpha": {
"url": "https://gtm-alpha.netlify.app/mcp-sse",
"transport": "sse"
}
}
}
}
Available Tools
GTM Alpha provides the following MCP tools, all FREE as part of our Launch Offer:
API Endpoints
Authentication
During the Launch Offer period, no authentication is required. All tools are freely accessible.
Simply connect to the MCP endpoint and start using the tools immediately.
Usage Examples
Using with Claude
Once configured, simply ask Claude to use GTM Alpha tools:
Use the gtm_epic_analysis tool to analyze the GTM strategy
for a B2B SaaS company in the HR tech space.
Company: "TalentFlow"
Website: talentflow.example.com
Target: Mid-market companies (100-1000 employees)
Product: AI-powered recruitment platform
REST API Example
curl -X POST https://gtm-alpha.netlify.app/api/gtm \
-H "Content-Type: application/json" \
-d '{
"tool": "gtm_epic_analysis",
"params": {
"company_name": "TalentFlow",
"website": "talentflow.example.com",
"industry": "HR Tech",
"target_market": "Mid-market B2B"
}
}'