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

# Connect MCP from the Dashboard

> Generate MCP connection configs for any connector directly from the StackOne dashboard.

Every connector in your project has a built-in flow for generating MCP connection configs. Once an account is linked, you can get a ready-to-paste config for Claude Desktop, Claude Code, Cursor, VS Code, or any other MCP-compatible client in three clicks.

## Prerequisites

* A linked account for the connector you want to use. See [Embedding the StackOne Hub](/guides/embedding-stackone-hub) or [Auth Links](/guides/auth-link) to add one.

***

## How to get your MCP config

<Steps>
  <Step title="Open a connector">
    Go to **Connectors** in the left nav, then click any connector to open its detail page.

    <Frame>
      <img src="https://mintcdn.com/stackone-60/feFMmwJmtdN9lsb8/images/mcp/dashboard-connectors-list.png?fit=max&auto=format&n=feFMmwJmtdN9lsb8&q=85&s=69fc8cb9ca5f70e08db74fda93a88d07" alt="Connectors list showing available connectors with Actions, Configs, and Accounts counts" width="2970" height="1714" data-path="images/mcp/dashboard-connectors-list.png" />
    </Frame>
  </Step>

  <Step title="Click 'Use Connector'">
    Click the **Use Connector** button in the top-right of the connector detail page. This opens the "Get Started with Connector" panel.

    <Frame>
      <img src="https://mintcdn.com/stackone-60/feFMmwJmtdN9lsb8/images/mcp/dashboard-connector-use-button.png?fit=max&auto=format&n=feFMmwJmtdN9lsb8&q=85&s=b5874102c454d6a4994754ded8b342f9" alt="Connector detail page showing the Use Connector button in the top-right header" width="2970" height="1714" data-path="images/mcp/dashboard-connector-use-button.png" />
    </Frame>

    <Note>
      If the connector isn't configured yet, you'll see a setup wizard instead. Complete both steps — create an auth configuration, then link an account — and the **Use** tab with the MCP tile will appear.
    </Note>
  </Step>

  <Step title="Select your account">
    On the **Use** tab, click **MCP Server** under "Use with Agent Client" to expand the tile.

    Select a linked account from the dropdown. StackOne generates a token for that account automatically.

    <Frame>
      <img src="https://mintcdn.com/stackone-60/feFMmwJmtdN9lsb8/images/mcp/dashboard-mcp-account-select.png?fit=max&auto=format&n=feFMmwJmtdN9lsb8&q=85&s=fd7d81b9c2966003b5816267ba443ddb" alt="MCP Server tile showing account selector dropdown" width="2970" height="1714" data-path="images/mcp/dashboard-mcp-account-select.png" />
    </Frame>
  </Step>

  <Step title="Choose your client">
    Pick the client you want to connect. Supported options:

    | Client         | Config format                  |
    | -------------- | ------------------------------ |
    | HTTPS MCP      | Direct URL                     |
    | Claude Desktop | JSON (`mcpServers` block)      |
    | Claude Code    | CLI command (`claude mcp add`) |
    | Cursor         | URL + one-click deep link      |
    | VS Code        | URL + one-click deep link      |
    | Codex CLI      | CLI command                    |
    | Gemini CLI     | JSON (`mcpServers` block)      |
    | Windsurf       | JSON (`mcpServers` block)      |
    | Zed            | JSON (`context_servers` block) |
    | Kiro           | JSON (`mcpServers` block)      |
    | Raycast        | URL                            |
    | LM Studio      | URL                            |

    <Frame>
      <img src="https://mintcdn.com/stackone-60/feFMmwJmtdN9lsb8/images/mcp/dashboard-mcp-client-grid.png?fit=max&auto=format&n=feFMmwJmtdN9lsb8&q=85&s=eea844ecf82c65d222e7ad68b4cbae2b" alt="Client selection grid showing icons for all supported MCP clients" width="2970" height="1714" data-path="images/mcp/dashboard-mcp-client-grid.png" />
    </Frame>
  </Step>

  <Step title="Copy the config">
    The panel shows the config in the right format for your client, with a copy button.

    For clients that use a config file (Claude Desktop, Gemini CLI, etc.), the panel also shows the exact file path to paste it into.

    For Cursor and VS Code, you can skip the copy step entirely and click **Add to Cursor** or **Add to VS Code** to install it directly via deep link.

    <Frame>
      <img src="https://mintcdn.com/stackone-60/feFMmwJmtdN9lsb8/images/mcp/dashboard-mcp-config-copy.png?fit=max&auto=format&n=feFMmwJmtdN9lsb8&q=85&s=3c9fd6672df1d60f899e618c57639511" alt="Config panel showing JSON configuration with copy button and file path" width="2970" height="1714" data-path="images/mcp/dashboard-mcp-config-copy.png" />
    </Frame>

    Paste the config into the specified file or terminal, then restart your client.
  </Step>
</Steps>

***

## What the MCP URL looks like

The generated URL follows this format:

```
https://api.stackone.com/mcp?token=<session_token>
```

The token encodes the account identity and expires after one year. You can regenerate it at any time using the refresh button in the MCP tile.

<Tip>
  The token-based URL is useful for quick setup and testing. For production deployments, use your API key and account ID directly. See [Authentication & Security](/mcp/auth-security) for details.
</Tip>

***

## Next steps

<CardGroup cols={2}>
  <Card title="MCP Quickstart" icon="rocket" href="/mcp/quickstart">
    Full endpoint reference and authentication options
  </Card>

  <Card title="Authentication & Security" icon="lock" href="/mcp/auth-security">
    Token types, expiry, and production auth patterns
  </Card>
</CardGroup>
