Skip to content
GTM Alpha
Revenue Enablement ยท connect

Connect Revenue Enablement to your AI assistant

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

The MCP server address

https://revenue-enablement.gtmhelix.com/mcp

Streamable HTTP, stateless, no sign-in. All 12 tools are read-only. The older address https://revenue-enablement-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: Revenue Enablement. Remote MCP server URL: https://revenue-enablement.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 Revenue Enablement to build an account plan for Northwind Clinics, a healthcare customer paying $24,000 a year for our ClinicFlow scheduling product.

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

VS Code (GitHub Copilot agent mode)

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

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

Windsurf

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

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