Skip to content
GTM Alpha
CRAFT Content ยท connect

Connect CRAFT Content to your AI assistant

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

The MCP server address

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

Streamable HTTP, stateless, no sign-in. All 8 tools are read-only. The older address https://craft-content-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 Content. Remote MCP server URL: https://craft-content.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 Content to draft a customer case study. Customer: Northwind Clinics, healthcare. Our product: ClinicFlow. Challenge: missed appointments. Solution: automated reminders. Results: no-shows down 30% in 3 months. Mode: full.

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-content https://craft-content.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-content.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-content": {
      "url": "https://craft-content.gtmhelix.com/mcp"
    }
  }
}

VS Code (GitHub Copilot agent mode)

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

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

Windsurf

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

{
  "mcpServers": {
    "craft-content": {
      "serverUrl": "https://craft-content.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-content": {
      "command": "npx",
      "args": [
        "-y",
        "@shashwatgtmalpha/craft-content-mcp"
      ]
    }
  }
}