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

# MCP Quickstart

> Connect your AI assistant to SureFeedback in under 2 minutes.

## Step 1 — Create an MCP key

<Steps>
  <Step title="Open MCP Integrations">
    Go to **Integrations → AI / MCP** in your SureFeedback dashboard, then click **Manage MCP Keys**.
  </Step>

  <Step title="Create a key">
    Click **Create MCP Key**, give it a name (e.g. `Claude Code`), select **Read** and **Write** permissions, and click **Create MCP Key**.
  </Step>

  <Step title="Copy the key">
    Copy the `sf_...` key from the dialog. It is shown **only once**.
  </Step>
</Steps>

## Step 2 — Configure your client

<Tabs>
  <Tab title="Claude Code">
    Run this command in your terminal:

    ```bash theme={null}
    claude mcp add --transport http surefeedback https://api.surefeedback.com/mcp \
      --header "X-API-Key: sf_your_key_here"
    ```

    Restart Claude Code. Type `/mcp` to verify `surefeedback` is connected.
  </Tab>

  <Tab title="Claude Desktop">
    Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\Claude\claude_desktop_config.json` (Windows):

    ```json theme={null}
    {
      "mcpServers": {
        "surefeedback": {
          "command": "npx",
          "args": [
            "mcp-remote@latest",
            "https://api.surefeedback.com/mcp",
            "--header",
            "X-API-Key: sf_your_key_here"
          ]
        }
      }
    }
    ```

    Restart Claude Desktop.
  </Tab>

  <Tab title="Cursor">
    Add to `.cursor/mcp.json` in your project root (or `~/.cursor/mcp.json` globally):

    ```json theme={null}
    {
      "mcpServers": {
        "surefeedback": {
          "type": "streamable-http",
          "url": "https://api.surefeedback.com/mcp",
          "headers": {
            "X-API-Key": "sf_your_key_here"
          }
        }
      }
    }
    ```
  </Tab>

  <Tab title="Windsurf">
    Add to `~/.codeium/windsurf/mcp_config.json`:

    ```json theme={null}
    {
      "mcpServers": {
        "surefeedback": {
          "serverUrl": "https://api.surefeedback.com/mcp",
          "headers": {
            "X-API-Key": "sf_your_key_here"
          }
        }
      }
    }
    ```
  </Tab>

  <Tab title="Cline (VS Code)">
    Open Cline MCP Settings in VS Code and add:

    ```json theme={null}
    {
      "mcpServers": {
        "surefeedback": {
          "url": "https://api.surefeedback.com/mcp",
          "headers": {
            "X-API-Key": "sf_your_key_here"
          }
        }
      }
    }
    ```
  </Tab>
</Tabs>

## Step 3 — Verify the connection

Ask your AI assistant:

> *"List all sites in my SureFeedback project"*

If connected correctly, it will return your sites list. You're ready to go.

<Tip>
  Each MCP key is scoped to your **active project**. To switch projects, update your active project in the SureFeedback dashboard — no key change needed.
</Tip>
