Skip to main content

Step 1: Install the CLI

Install the SuprSend CLI using your preferred method:

Step 2: Authentication

Get your service token from SuprSend Dashboard β†’ Account Settings β†’ Service Tokens. There are three ways to authenticate the CLI:
  • Setting environment variable
  • Using profiles
  • Passing service token as a command flag
We generally recommend setting up profiles to ensure that service token is not exposed in the shell history but if you’re setting up CLI to start using MCP server, then you can use environment variable or command flag. Setting up environment variable:
export SUPRSEND_SERVICE_TOKEN="your_service_token_here"
Using profiles:
suprsend profile add --name "my-workspace" --service-token "your_service_token_here"
suprsend profile use --name "my-workspace"
As command flag when starting MCP server:
suprsend start-mcp-server --service-token "your_service_token_here"

Your setup is now complete πŸŽ‰

You can start using the CLI by running suprsend command.
suprsend workflow list

Step 3: Enable Autocompletion (Optional)

Enable autocompletion to get command and flag suggestions with tab and prevent typos.