Skip to content
GTM Alpha
CRAFT GTM · connect

Connect CRAFT GTM to your AI assistant

One address, no sign-in, all tools read-only. Pick your assistant below.

The MCP server address

https://craft-gtm.gtmhelix.com/mcp

Streamable HTTP, stateless, no sign-in. All 8 tools are read-only. The older address https://craft-gtm-mcp.netlify.app/mcp still answers directly for anyone who set it up before.

Claude (web, desktop and mobile)

  1. Open Customize, then Connectors, then Add custom connector.
  2. Name: CRAFT GTM. Remote MCP server URL: https://craft-gtm.gtmhelix.com/mcp.
  3. Leave the sign-in fields empty and select Add.
  4. In a chat, turn the connector on from the tools menu and ask, for example: Use CRAFT GTM to score our product-market fit. Product: a scheduling tool for clinics, target market: SMB SaaS. Metrics: MRR $40K, churn 4% monthly, NPS 38, CAC $600, LTV $4,200.

Custom connectors are available on Claude's Free, Pro, Max, Team and Enterprise plans; on Team and Enterprise an Owner may need to allow them.

Claude Code

claude mcp add --transport http craft-gtm https://craft-gtm.gtmhelix.com/mcp

ChatGPT

ChatGPT can use remote MCP servers as custom connectors on plans that allow developer mode. In ChatGPT's settings, open the connectors (apps) section, turn on developer mode if your plan requires it, create a connector with the URL https://craft-gtm.gtmhelix.com/mcp and no authentication, then enable it in a chat. Menu names change between ChatGPT releases; OpenAI's help centre has the current path.

Cursor

Add this to ~/.cursor/mcp.json (all projects) or .cursor/mcp.json (one project):

{
  "mcpServers": {
    "craft-gtm": {
      "url": "https://craft-gtm.gtmhelix.com/mcp"
    }
  }
}

VS Code (GitHub Copilot agent mode)

Add this to .vscode/mcp.json in your project:

{
  "servers": {
    "craft-gtm": {
      "type": "http",
      "url": "https://craft-gtm.gtmhelix.com/mcp"
    }
  }
}

Windsurf

Add this to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "craft-gtm": {
      "serverUrl": "https://craft-gtm.gtmhelix.com/mcp"
    }
  }
}

Other assistants, or no internet access

Any MCP client that supports Streamable HTTP can use the address above with no authentication. For a client that only runs local servers, use the npm package, which runs the same tools on your own computer over stdio:

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