Skip to main content

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.

The SuprSend MCP server runs through the SuprSend CLI via npx — no install step, always the latest version. Requires Node.js 18+.
Most developers use Claude Code from the terminal. This is the recommended path.Step 1 — Get a service tokenGo to Dashboard → Account Settings → Service Tokens and generate a token for your workspace.Step 2 — Add the MCP serverRun this from your terminal:
claude mcp add suprsend --env SUPRSEND_SERVICE_TOKEN=your_service_token_here -- npx -y suprsend start-mcp-server
This adds SuprSend to your user-scoped config (~/.claude.json) so it’s available across all your projects.Or add it to a specific project (commits to .mcp.json, shareable with your team):
claude mcp add suprsend --scope project --env SUPRSEND_SERVICE_TOKEN=your_service_token_here -- npx -y suprsend start-mcp-server
Step 3 — VerifyStart a Claude Code session and run:
/mcp
You should see suprsend: connected. Then try:
List all workflows in my SuprSend workspace.
Prefer a managed install over npx? Install the CLI via Homebrew, binary, or source build, then use "command": "suprsend" with "args": ["start-mcp-server"] instead.

Scoping tool access

By default the MCP server exposes all tools. Use --tools to restrict access — useful in production or shared environments:
# Only expose user and workflow tools
suprsend start-mcp-server --tools "users.*,workflows.list"

# Single tool only
suprsend start-mcp-server --tools "users.get"
See the Tool List for all available identifiers.

Next steps

Tool List

All available tools and how to scope them.

Prompt Cheatsheet

Ready-to-use prompts to get started fast.