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

# Agentic AI Connector (MCP)

> Connect Claude, ChatGPT, or any MCP-compatible AI agent to your Digital Surge account with the Agentic AI Connector. Check prices, review your portfolio, and trade crypto in AUD through natural conversation.

The **Agentic AI Connector** is Digital Surge's hosted [Model Context Protocol](https://modelcontextprotocol.io) (MCP) server. It lets AI assistants use your account directly — no code, no API-key copy-pasting:

```text theme={null}
https://mcp.digitalsurge.com.au/mcp
```

Once connected, your agent can check live prices, review balances and transaction history, estimate and place trades, and manage price alerts — with your explicit sign-in and approval. Withdrawals are deliberately not available to agents.

## Connect from Claude

<Tabs>
  <Tab title="Claude (web & desktop)">
    1. Open **Settings → Connectors → Add custom connector**.
    2. Enter the server URL: `https://mcp.digitalsurge.com.au/mcp`
    3. When prompted, sign in with your Digital Surge credentials (and two-factor code) to authorize the connection.
  </Tab>

  <Tab title="Claude Code">
    ```bash theme={null}
    claude mcp add --transport http digitalsurge https://mcp.digitalsurge.com.au/mcp
    ```

    Then authenticate when prompted with `/mcp`.
  </Tab>

  <Tab title="ChatGPT, Gemini & others">
    Any client supporting **streamable HTTP** transport with OAuth can connect. Point it at
    `https://mcp.digitalsurge.com.au/mcp` — server metadata is published at
    [`/.well-known/mcp/server-card.json`](https://mcp.digitalsurge.com.au/.well-known/mcp/server-card.json).

    For step-by-step ChatGPT and Gemini instructions, see the
    [Agentic AI Connector setup guide](https://help.digitalsurge.com.au/en/articles/15073408-connect-digital-surge-to-your-favourite-ai-with-the-agentic-ai-connector)
    in our Help Centre.
  </Tab>
</Tabs>

<Note>
  Prefer a plain-English walkthrough? The Help Centre has a
  [setup guide](https://help.digitalsurge.com.au/en/articles/15073408-connect-digital-surge-to-your-favourite-ai-with-the-agentic-ai-connector)
  and a [technical guide](https://help.digitalsurge.com.au/en/articles/15077482-digital-surge-agentic-ai-connector-technical-guide)
  with a breakdown of every tool your agent gets.
</Note>

## How access works

* You authorize each agent by signing in to Digital Surge yourself — the agent never sees your password.
* Each connection gets its own access grant, valid for about 30 days before it needs re-authorization.
* The **first time a new agent connects, we email you** so you always know what has access.

## Reviewing and revoking access

You can list and disconnect agents through the API itself — see the *Connected AI Agents* endpoints in the [API Reference](/api-reference):

* `GET /api/private/mcp-agents/` — every agent currently connected, with its user-agent and last activity
* `DELETE /api/private/mcp-agents/{id}/` — disconnect an agent immediately (its access is revoked)

<Note>
  Personal API keys cannot manage connected agents — reviewing or revoking agent access requires your own logged-in session, which keeps a leaked key from silently granting itself more access.
</Note>

## Agent safety

Trading tools obey the same rules as the app: trades require an estimate step, and the agent should confirm with you before executing. Still, treat an agent connection with the same care as a Read & Write API key — only connect agents you trust, and disconnect any you stop using.
