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

# Connect Cursor

> Install the Copyfy MCP server in Cursor in one click, or add it to mcp.json.

<Info>
  Steps checked against Cursor's documentation on September 24, 2026 (Cursor 3.9 and later).
</Info>

## One-click install

<Card title="Add Copyfy to Cursor" icon="download" href="https://cursor.com/install-mcp?name=copyfy&config=eyJ1cmwiOiJodHRwczovL2FwcC5jb3B5ZnkuaW8vbWNwIn0%3D">
  Opens Cursor and asks you to confirm the installation.
</Card>

<Steps>
  <Step title="Install">
    Click the card above, let your browser open Cursor, and confirm the installation.
  </Step>

  <Step title="Sign in to Copyfy">
    Open **Customize** > **MCPs** in the Cursor sidebar. Copyfy is marked as needing authentication: click **Connect** next to it, sign in to Copyfy in your browser, and click **Allow access**.
  </Step>

  <Step title="Try it">
    In the agent chat, ask: *"Use Copyfy to find 10 winning products in the Pets niche for the US."*
  </Step>
</Steps>

If the card does not open Cursor, use this link directly:

```text Cursor deep link theme={null}
cursor://anysphere.cursor-deeplink/mcp/install?name=copyfy&config=eyJ1cmwiOiJodHRwczovL2FwcC5jb3B5ZnkuaW8vbWNwIn0%3D
```

## Manual setup with mcp.json

Add Copyfy to `~/.cursor/mcp.json` to use it in every project, or to `.cursor/mcp.json` in a project folder.

<Tabs>
  <Tab title="OAuth (recommended)">
    ```json ~/.cursor/mcp.json theme={null}
    {
      "mcpServers": {
        "copyfy": {
          "url": "https://app.copyfy.io/mcp"
        }
      }
    }
    ```

    Save the file, then open **Customize** > **MCPs** and click **Connect** next to Copyfy to sign in.
  </Tab>

  <Tab title="API key">
    Create an [API key](/authentication#create-a-key), store it in the `COPYFY_API_KEY` environment variable, then reference it:

    ```json ~/.cursor/mcp.json theme={null}
    {
      "mcpServers": {
        "copyfy": {
          "url": "https://app.copyfy.io/mcp",
          "headers": {
            "Authorization": "Bearer ${env:COPYFY_API_KEY}"
          }
        }
      }
    }
    ```

    Restart Cursor so it reads the environment variable. Never commit a key in a project's `.cursor/mcp.json`.
  </Tab>
</Tabs>

## Fallback

Copy the URL `https://app.copyfy.io/mcp`, open **Customize** > **MCPs** in Cursor, add a new MCP server, and paste the URL.

## Disconnect

Remove Copyfy from **Customize** > **MCPs** or from `mcp.json`. To revoke access from the Copyfy side, click **Revoke** next to Cursor under **Connected apps** on the [Integrations page](https://app.copyfy.io/dashboard/api).

Having trouble? See [Troubleshooting](/troubleshooting).
