URL: /mcp/install/vscode

---
title: VS Code
description: Connect DomainGenius MCP to VS Code's MCP support.
---

The endpoint is `https://mcp.domaingenius.com.au/mcp`. Project-scoped config goes in `.vscode/mcp.json`; user-scoped goes in your VS Code settings under `mcp.servers`.

<Tabs>
  <Tab title="OAuth">
```json
{
  "servers": {
    "domaingenius": {
      "type": "http",
      "url": "https://mcp.domaingenius.com.au/mcp"
    }
  }
}
```
  </Tab>
  <Tab title="API key">
```json
{
  "servers": {
    "domaingenius": {
      "type": "http",
      "url": "https://mcp.domaingenius.com.au/mcp",
      "headers": {
        "Authorization": "Bearer dg_live_..."
      }
    }
  }
}
```
  </Tab>
</Tabs>

Reload the window (`Developer: Reload Window`). The MCP panel lists `domaingenius` with its tool count once the server connects.
