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

# Connect Claude to Didit

> Add the Didit MCP server to Claude in one click. The connector link pre-fills the dialog; you sign in with Didit over OAuth. No API keys, 115 tools.

export const VideoEmbed = ({src, title = "Video", type = "iframe"}) => <div className={type === "iframe" ? "didit-video-embed" : "didit-video-embed didit-video-native"}>
    {type === "iframe" ? <iframe src={src} title={title} style={{
  width: "100%",
  height: "100%",
  border: 0,
  borderRadius: "12px"
}} allow="accelerometer; autoplay; clipboard-write; compute-pressure; encrypted-media; gyroscope; picture-in-picture" allowFullScreen /> : <video controls autoPlay muted loop playsInline src={src} title={title} style={{
  width: "100%",
  height: "auto",
  display: "block",
  borderRadius: "12px"
}} />}
  </div>;

Claude connects to the hosted Didit MCP server with one link. Click it, confirm the pre-filled dialog, and sign in with your Didit account. There is no API key to copy and nothing to install.

<Card title="Add Didit to Claude" icon="wand-magic-sparkles" href="https://claude.ai/customize/connectors?modal=add-custom-connector&connectorName=Didit&connectorUrl=https://mcp.didit.me/mcp">
  Opens claude.ai with the Add custom connector dialog pre-filled: name Didit, URL mcp.didit.me/mcp. Confirm, sign in with Didit, done.
</Card>

The full connector link, if you want to share it or put it behind your own button:

```text theme={null}
https://claude.ai/customize/connectors?modal=add-custom-connector&connectorName=Didit&connectorUrl=https://mcp.didit.me/mcp
```

This is the same link the [Business Console](https://business.didit.me) shows on its integrate page.

In the MCP Academy lesson, the 1:42 chapter shows this exact flow: adding the connector in Claude, the OAuth sign-in, and the tools appearing in the chat.

<VideoEmbed src="https://www.youtube.com/embed/I3UkFIhW548?start=102&rel=0&playsinline=1" title="Adding the connector in Claude — Didit Academy" />

***

## Set up by surface

<Tabs>
  <Tab title="Claude web">
    1. Click [**Add Didit to Claude →**](https://claude.ai/customize/connectors?modal=add-custom-connector\&connectorName=Didit\&connectorUrl=https://mcp.didit.me/mcp). The **Add custom connector** dialog opens with every field filled in.
    2. Confirm the dialog.
    3. Complete **Log in with Didit** in the browser and approve the permissions.

    The Didit tools then show up in the chat's tool menu. If you prefer the manual path: **Settings → Connectors → Add custom connector**, name `Didit`, URL `https://mcp.didit.me/mcp`.
  </Tab>

  <Tab title="Claude Desktop">
    1. **Settings → Connectors → Add custom connector**.
    2. Name it `Didit` and set the URL to:

    ```text theme={null}
    https://mcp.didit.me/mcp
    ```

    3. Click **Connect** and complete **Log in with Didit** in the browser.
  </Tab>

  <Tab title="Claude Code">
    Add the server with the CLI, then trigger the sign-in:

    ```bash theme={null}
    claude mcp add --transport http didit https://mcp.didit.me/mcp
    ```

    Start Claude Code and run `/mcp` — it opens the browser for **Log in with Didit**. After you approve, the `didit` tools are available.
  </Tab>
</Tabs>

<Info>
  **No API key anywhere.** The hosted server uses OAuth 2.1 with PKCE and acts as **you**: every organization you belong to, with your role's permissions, under the `didit:management` and `didit:verification` scopes. See [Authentication](/integration/mcp/authentication).
</Info>

***

## What Claude can do once connected

The hosted server exposes **115 tools** across sessions, workflows, transactions, cases, analytics, and more. Prompts that work on day one:

* "Create a KYC workflow with ID verification, passive liveness, and AML screening, then give me a verification link."
* "Show me the sessions waiting in my review queue and summarize the warnings on each."
* "Write a transaction monitoring rule that flags more than 3 transfers over \$1,000 in an hour, and back-test it against the last 90 days."
* "Which country generated the most declined sessions this month?"

The [MCP Academy lesson](https://www.youtube.com/watch?v=I3UkFIhW548) runs each of these against a live account.

***

## Troubleshooting

* **The dialog opens empty.** You followed a link that lost its query string. Paste the full connector link from this page, or add the connector manually with URL `https://mcp.didit.me/mcp`.
* **Sign-in loops or fails.** Log in at [business.didit.me](https://business.didit.me) first, then reconnect. The MCP server authenticates against the same account.
* **Tools are missing.** Your role in the organization limits which tools appear. An owner or admin sees all 115; narrower roles see fewer. See [Authentication](/integration/mcp/authentication).

***

## Next steps

<CardGroup cols={2}>
  <Card title="Tools reference" icon="wrench" href="/integration/mcp/tools">
    Everything Claude can call, tool by tool.
  </Card>

  <Card title="Example prompts" icon="comments" href="/integration/mcp/examples">
    Longer worked examples with real payloads.
  </Card>

  <Card title="Other clients" icon="plug" href="/integration/mcp/installation">
    Cursor, VS Code, Windsurf, Zed, and self-hosting.
  </Card>

  <Card title="Authentication" icon="lock" href="/integration/mcp/authentication">
    OAuth flow, scopes, and roles.
  </Card>
</CardGroup>
