> ## Documentation Index
> Fetch the complete documentation index at: https://docs.supercycle.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Setup

> Connect the Builders MCP to your preferred AI client

The Builders MCP server is available at:

```
https://docs.supercycle.com/mcp
```

Connect it to your preferred AI tool using the instructions below.

<AccordionGroup>
  <Accordion title="ChatGPT" icon="openai" iconType="brands">
    ChatGPT supports MCP connections through its Connectors feature.

    <Steps>
      <Step title="Open Connectors settings">
        In ChatGPT, go to **Settings** → **Connectors** → **Add custom connector**.
      </Step>

      <Step title="Add the Supercycle Builders MCP server">
        * **Name:** `Supercycle Builders MCP`
        * **URL:** `https://docs.supercycle.com/mcp`
      </Step>

      <Step title="Use it in your chats">
        When starting a new chat, select the attachments button (the plus icon) and choose the Supercycle Builders MCP connector. ChatGPT will now search Supercycle's documentation when relevant to your questions.
      </Step>
    </Steps>
  </Accordion>

  <Accordion title="Claude" icon="https://mintcdn.com/supercycle/XbKBsdX_PulItpyX/images/icons/claude.svg?fit=max&auto=format&n=XbKBsdX_PulItpyX&q=85&s=20cf8e84f3811b0c9f8f02bd3279147a" width="24" height="24" data-path="images/icons/claude.svg">
    Claude supports MCP connections through its Connectors feature.

    <Steps>
      <Step title="Open Connectors settings">
        Navigate to the [Connectors](https://claude.ai/settings/connectors) page in your Claude settings.
      </Step>

      <Step title="Add the Supercycle Builders MCP server">
        Select **Add custom connector** and enter:

        * **Name:** `Supercycle Builders MCP`
        * **URL:** `https://docs.supercycle.com/mcp`
      </Step>

      <Step title="Use it in your chats">
        When using Claude, select the attachments button (the plus icon) and choose the Supercycle Builders MCP connector. Claude will now search Supercycle's documentation when relevant to your questions.
      </Step>
    </Steps>
  </Accordion>

  <Accordion title="Claude Code" icon="https://mintcdn.com/supercycle/XbKBsdX_PulItpyX/images/icons/claude.svg?fit=max&auto=format&n=XbKBsdX_PulItpyX&q=85&s=20cf8e84f3811b0c9f8f02bd3279147a" width="24" height="24" data-path="images/icons/claude.svg">
    Run the following command to add the Supercycle Builders MCP server to Claude Code:

    ```bash theme={null}
    claude mcp add --transport http supercycle-builders-mcp https://docs.supercycle.com/mcp
    ```

    Verify the connection:

    ```bash theme={null}
    claude mcp list
    ```
  </Accordion>

  <Accordion title="Cursor" icon="https://mintcdn.com/supercycle/XbKBsdX_PulItpyX/images/icons/cursor.svg?fit=max&auto=format&n=XbKBsdX_PulItpyX&q=85&s=f15d6564452b6997ade987706a36e7eb" width="24" height="24" data-path="images/icons/cursor.svg">
    <Steps>
      <Step title="Open MCP settings">
        Use <kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd> (<kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd> on Windows) to open the command palette. Search for **Open MCP settings** and select **Add custom MCP**.
      </Step>

      <Step title="Add the Supercycle Builders MCP server">
        Add the following to your `mcp.json`:

        ```json theme={null}
        {
          "mcpServers": {
            "Supercycle Builders MCP": {
              "url": "https://docs.supercycle.com/mcp"
            }
          }
        }
        ```
      </Step>
    </Steps>
  </Accordion>

  <Accordion title="VS Code" icon="https://mintcdn.com/supercycle/XbKBsdX_PulItpyX/images/icons/vscode.svg?fit=max&auto=format&n=XbKBsdX_PulItpyX&q=85&s=1ca009685f987bc913f06e2920c3fce8" width="24" height="24" data-path="images/icons/vscode.svg">
    Create a `.vscode/mcp.json` file in your project and add:

    ```json theme={null}
    {
      "servers": {
        "Supercycle Builders MCP": {
          "type": "http",
          "url": "https://docs.supercycle.com/mcp"
        }
      }
    }
    ```
  </Accordion>

  <Accordion title="Retool" icon="https://mintcdn.com/supercycle/XbKBsdX_PulItpyX/images/icons/retool.svg?fit=max&auto=format&n=XbKBsdX_PulItpyX&q=85&s=eba6603b4cf8a7fa1293935168f56d6c" width="24" height="24" data-path="images/icons/retool.svg">
    <Steps>
      <Step title="Open your Retool agent">
        Open an existing agent or create a new one. On the **Configuration** tab, click **Add new tool** → **Connect to MCP Server**.
      </Step>

      <Step title="Add the Supercycle Builders MCP server">
        Select **Add new resource** and enter:

        * **Name:** `Supercycle Builders MCP`
        * **Server URL:** `https://docs.supercycle.com/mcp`
      </Step>

      <Step title="Use it in your agent">
        Your Retool agent can now search Supercycle's documentation when building apps, dashboards, and workflows.
      </Step>
    </Steps>
  </Accordion>

  <Accordion title="Lovable" icon="https://mintcdn.com/supercycle/XbKBsdX_PulItpyX/images/icons/lovable.svg?fit=max&auto=format&n=XbKBsdX_PulItpyX&q=85&s=1bfb26a7908364c96fbebf7a73db4a5b" width="24" height="24" data-path="images/icons/lovable.svg">
    <Steps>
      <Step title="Open Connectors settings">
        Go to **Settings** → **Connectors** → **Personal connectors**, then click **New MCP server**.
      </Step>

      <Step title="Add the Supercycle Builders MCP server">
        * **Server name:** `Supercycle Builders MCP`
        * **Server URL:** `https://docs.supercycle.com/mcp`
        * **Authentication:** No authentication
      </Step>

      <Step title="Use it in your builds">
        The Lovable agent can now search Supercycle's documentation when generating code, prototypes, and integrations.
      </Step>
    </Steps>
  </Accordion>

  <Accordion title="Other MCP clients">
    Any MCP-compatible client can connect using the server URL:

    ```
    https://docs.supercycle.com/mcp
    ```
  </Accordion>
</AccordionGroup>
