> ## 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 ChatGPT, Claude, Cursor, VS Code, Retool, Lovable, or any MCP client

The Builders MCP server is a public HTTP endpoint with no authentication, so connecting it is a matter of adding its URL to your AI tool.

```text Builders MCP server URL theme={null}
https://docs.supercycle.com/mcp
```

Pick your client below.

<AccordionGroup>
  <Accordion title="ChatGPT" icon="openai" iconType="brands">
    ChatGPT connects to MCP servers through its Connectors feature.

    <Steps>
      <Step title="Open Connectors">
        In ChatGPT, open **Settings**, then **Connectors**, then select **Add custom connector**.
      </Step>

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

      <Step title="Use it in a chat">
        In a new chat, select the attachments button (the plus icon), then the Supercycle Builders MCP connector. ChatGPT searches Supercycle's documentation when a question calls for it.
      </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 connects to MCP servers through its Connectors feature.

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

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

      <Step title="Use it in a chat">
        Select the attachments button (the plus icon), then the Supercycle Builders MCP connector. Claude searches Supercycle's documentation when a question calls for it.
      </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">
    Add the server from the terminal:

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

    Then confirm it's connected:

    ```bash Verify 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">
        Press Cmd+Shift+P (Ctrl+Shift+P on Windows) to open the command palette. Search for **Open MCP settings** and select **Add custom MCP**.
      </Step>

      <Step title="Add the server">
        Add this to your `mcp.json`:

        ```json mcp.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 .vscode/mcp.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 one. On the **Configuration** tab, select **Add new tool > Connect to MCP Server**.
      </Step>

      <Step title="Add the server">
        Select **Add new resource**. Enter `Supercycle Builders MCP` in **Name** and `https://docs.supercycle.com/mcp` in **Server URL**.
      </Step>

      <Step title="Use it in your agent">
        The agent searches Supercycle's documentation when it builds 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">
        In Lovable, open **Settings**, then **Connectors**, then **Personal connectors**, and select **New MCP server**.
      </Step>

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

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

  <Accordion title="Other MCP clients">
    Any MCP-compatible client can connect with the server URL `https://docs.supercycle.com/mcp`. No authentication is needed.
  </Accordion>
</AccordionGroup>
