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

# Quickstart: Cursor

> Connect the SuprSend MCP server to Cursor.

<Steps>
  <Step title="Get a service token">
    Go to [Dashboard → Account Settings → Service Tokens](https://app.suprsend.com/en/account-settings/service-tokens) and generate a token for your workspace.
  </Step>

  <Step title="Add the MCP configuration">
    The SuprSend MCP server runs through the SuprSend CLI via [`npx`](https://docs.npmjs.com/cli/v10/commands/npx) — no install step, always the latest version. Requires [Node.js](https://nodejs.org/) 18+.

    Click the button below to install automatically (Cursor 1.0+ required):

    [![Add to Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](cursor://anysphere.cursor-deeplink/mcp/install?name=suprsend\&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsInN1cHJzZW5kIiwic3RhcnQtbWNwLXNlcnZlciJdLCJlbnYiOnsiU1VQUlNFTkRfU0VSVklDRV9UT0tFTiI6InlvdXJfc2VydmljZV90b2tlbl9oZXJlIn19)

    Or add manually: **Settings → MCP & Integrations → New MCP Server**, then paste into `mcp.json`:

    ```json theme={"system"}
    {
      "mcpServers": {
        "suprsend": {
          "command": "<your-npx-path>",
          "args": ["-y", "suprsend", "start-mcp-server"],
          "env": {
            "SUPRSEND_SERVICE_TOKEN": "your_token_here"
          }
        }
      }
    }
    ```

    <Note>
      Prefer a managed install over npx? Install the CLI via [Homebrew, binary, or source build](/reference/cli-installation), then use `"command": "suprsend"` with `"args": ["start-mcp-server"]` instead.
    </Note>
  </Step>

  <Step title="Verify the connection">
    In a new Cursor Agent chat, try:

    ```
    List all workflows in my SuprSend workspace.
    ```

    If the MCP server is connected, Cursor will call the tool and return your workflows.
  </Step>
</Steps>

<Tip>
  Restrict which tools Cursor can access using the `--tools` flag. See [Tool List](/reference/mcp-tool-list) for available identifiers.
</Tip>

***

<CardGroup cols={2}>
  <Card title="Tool List" icon="wrench" href="/reference/mcp-tool-list">
    All available tools and how to scope them.
  </Card>

  <Card title="Prompt Cheatsheet" icon="clipboard-list" href="/reference/mcp-prompts">
    Ready-to-use prompts to get started fast.
  </Card>
</CardGroup>
