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

# MCP Setup

> Generate an MCP key from the SuperDocs Settings page and connect your AI tool.

# MCP Setup

The MCP tab in Settings generates a dedicated API key and shows connection details for your AI tool.

<Note>
  This page is just about **getting a key from the app**. For the protocol overview, the endpoint, and per-client config, see [MCP Overview](/mcp/setup) and the client guides it links (Claude Code, Cursor & VS Code, Claude Desktop). You don't need both pages. Start with the one that matches where you are.
</Note>

## Generate your MCP key

1. Open [use.superdocs.app](https://use.superdocs.app) and sign in
2. Click the **gear icon** to open Settings
3. Go to the **MCP** tab
4. Click **Generate MCP Key**

A dedicated API key named "MCP Integration" is created. The connection details appear:

<Note>
  The "MCP Key" is a regular API key with the name "MCP Integration" — same format, same auth, same usage limits as keys you create in the [API Keys](/account/api-keys) tab. The MCP tab is just a convenience that auto-names the key and pre-fills it into the config snippets below. You can also use any `sk_` key from the API Keys tab here — they work identically.
</Note>

| Field             | Value                                |
| ----------------- | ------------------------------------ |
| **Endpoint**      | `https://api.superdocs.app/mcp/`     |
| **Transport**     | Streamable HTTP                      |
| **Authorization** | `Bearer sk_...` (your generated key) |

Both `/mcp` and `/mcp/` are accepted; the trailing-slash form is the canonical spelling.

## Connect your AI tool

Copy the config snippet shown in Settings and paste it into your tool's configuration file.

For step-by-step setup instructions, see the MCP Integration guides:

<CardGroup cols={3}>
  <Card title="Claude Desktop" icon="message-bot" href="/mcp/claude-desktop">
    JSON config for Claude Desktop
  </Card>

  <Card title="Cursor & VS Code" icon="code" href="/mcp/cursor-vscode">
    Config for Cursor, VS Code, Windsurf
  </Card>

  <Card title="Claude Code" icon="terminal" href="/mcp/claude-code">
    CLI command for Claude Code
  </Card>
</CardGroup>
