Skip to main content
Follow the steps below to set up the SuprSend MCP Server and start integrating SuprSend using your favourite AI assistant.

Step 1: Install SuprSend CLI

The MCP Server is powered through the SuprSend CLI for server startup and authentication. Install the CLI using the method that best fits your OS and usecase.

Step 2: Get Your Service Token

You’ll need a service token from SuprSend to authenticate MCP Server. Get your service token from SuprSend Dashboard → Account SettingsService Tokens.

Step 3: Authenticate CLI

Best way to authenticate CLI for local development is to set up environment variable. You can either set it in your shell
export SUPRSEND_SERVICE_TOKEN="your_service_token_here"
Or pass the environment variable directly in your MCP configuration.
  {
    "mcpServers": {
      "suprsend": {
        "command": "suprsend",
        "args": ["start-mcp-server"],
        "env": {
          "SUPRSEND_SERVICE_TOKEN": "your_service_token_here"
        }
      }
    }
  }

Step 4: Set Up MCP in your AI coding assistants

Cursor

Click on this button to install the SuprSend MCP server in Cursor (version 1.0 or higher is required). Add to Cursor Or, add the MCP configuration manually to your Cursor settings.
  1. Go to Cursor -> Settings -> Cursor Settings
  2. On the settings modal, Go to MCP & Integrations and click on “New MCP Server”.
  3. Inside mcp.json file, add below code:
    {
      "mcpServers": {
        "suprsend": {
          "command": "suprsend",
          "args": ["start-mcp-server"],
          "env": {
            "SUPRSEND_SERVICE_TOKEN": "your_service_token_here"
          }
        }
      }
    }
    

Claude Desktop

  1. Open Claude Settings → Developer Section.
  2. Click Edit Config under Local MCP Servers.
  3. Add the following snippet:
    {
      "mcpServers": {
        "suprsend": {
          "command": "suprsend",
          "args": ["start-mcp-server"],
          "env": {
            "SUPRSEND_SERVICE_TOKEN": "your_service_token_here"
          }
        }
      }
    }
    

Windsurf

  1. Go to Windsurf settings → Extensions
  2. Add the SuprSend MCP configuration
    {
      "suprsend": {
        "command": "suprsend",
        "args": ["start-mcp-server"],
        "env": {
          "SUPRSEND_SERVICE_TOKEN": "your_service_token_here"
        },
        "name": "SuprSend MCP Server"
      }
    }
    
Refresh the MCP Settings by clicking the refresh button.