URL: /mcp/install/cline

---
title: Cline
description: Connect DomainGenius MCP to the Cline VS Code extension.
---

The endpoint is `https://mcp.domaingenius.com.au/mcp`.

<Steps>
  <Step title="Open MCP settings">
    Click the Cline icon in the activity bar, then the **MCP Servers** tab.
  </Step>
  <Step title="Add a server">
    Pick **Edit MCP Settings**. The settings file opens in the editor.
  </Step>
  <Step title="Paste the config">
    <Tabs>
      <Tab title="OAuth">
```json
{
  "mcpServers": {
    "domaingenius": {
      "url": "https://mcp.domaingenius.com.au/mcp",
      "transportType": "http"
    }
  }
}
```
      </Tab>
      <Tab title="API key">
```json
{
  "mcpServers": {
    "domaingenius": {
      "url": "https://mcp.domaingenius.com.au/mcp",
      "transportType": "http",
      "headers": {
        "Authorization": "Bearer dg_live_..."
      }
    }
  }
}
```
      </Tab>
    </Tabs>
  </Step>
  <Step title="Verify">
    Save. The Cline panel reloads the server list. Ask Cline to "list my DomainGenius orgs".
  </Step>
</Steps>
