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.

🎉
Launch Offer: FREE Access!
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:

JSON
{
  "mcpServers": {
    "gtm-alpha": {
      "command": "npx",
      "args": ["-y", "@anthropic/remote-mcp-server",
               "https://gtm-alpha.netlify.app/mcp-sse"]
    }
  }
}

Cursor / VS Code

JSON
{
  "mcp": {
    "servers": {
      "gtm-alpha": {
        "url": "https://gtm-alpha.netlify.app/mcp-sse",
        "transport": "sse"
      }
    }
  }
}
💡
Tip: After configuration, restart your client to load the GTM Alpha tools.

Available Tools

GTM Alpha provides the following MCP tools, all FREE as part of our Launch Offer:

gtm_epic_analysis FREE
Comprehensive EPIC Framework analysis for any company. Evaluates Education, Problem-Solution, Implementation, and Community aspects of GTM strategy.
gtm_digital_audit FREE
Audit digital presence including website, social media, content strategy, and SEO positioning.
gtm_market_intelligence FREE
Market research and competitive analysis. Identify market opportunities and positioning gaps.
gtm_roadmap_generator FREE
Generate 6-month implementation roadmaps with actionable steps and milestones.
gtm_community_analyzer FREE
Analyze community building opportunities and engagement strategies.

API Endpoints

GET /mcp-sse
Server-Sent Events endpoint for MCP protocol communication. Use this for real-time tool invocation.
POST /api/gtm
REST API endpoint for direct GTM analysis requests. Returns JSON response.

Authentication

During the Launch Offer period, no authentication is required. All tools are freely accessible.

🔓
No API Key Required
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:

Prompt
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
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"
    }
  }'