The plugin runs the SuprSend CLI viaDocumentation Index
Fetch the complete documentation index at: https://docs.suprsend.com/llms.txt
Use this file to discover all available pages before exploring further.
npx suprsend, so the only hard prerequisites are Node.js (v20+) and Claude Code.
Prerequisites
| Requirement | Minimum Version | Check |
|---|---|---|
| Claude Code CLI | latest | claude --version |
| Node.js + npx | v20+ | node --version / npx --version |
| SuprSend CLI | optional | suprsend --version or npx suprsend --version |
suprsend install isn’t required — npx suprsend fetches it on first use and caches it. Installing globally (brew/Go) is supported and takes precedence over the npx fallback.
Setup
Authenticate
Get a service token from Account Settings → Service Tokens.Or set it as an environment variable for the current session:
Install the plugin in your AI tool
The plugin format is shared between Claude Code, VS Code Copilot, and GitHub Copilot CLI — pick the install path that matches your editor. The bundled
.mcp.json invokes npx -y suprsend start-mcp-server, so the MCP server starts on demand regardless of host.- Claude Code
- VS Code Copilot
Optional: global install
If you’d rather havesuprsend on your PATH (faster cold starts, scripting outside the plugin):
- macOS
- Linux / WSL (via Go)
- Windows (WSL)
CI/CD environments
For automated environments where Claude Code isn’t available interactively, use the SuprSend CLI directly:Uninstall
- Claude Code
- VS Code Copilot
Uninstall the plugin and remove the marketplace:
Usage examples
Make sure the plugin is installed before trying these examples:Workflow management
List and inspect workflowsSchema operations
Template management
CLI reference queries (skill)
These are answered by bundled skills (no API call needed):Workflow schema reference (skill)
Also powered by bundled skills:Debugging & troubleshooting
Bulk operations
Troubleshooting
CLI issues
"suprsend: command not found"
"suprsend: command not found"
The plugin uses If you’d rather install globally:Fix (macOS):Fix (Go):
npx suprsend by default, so a global SuprSend CLI install isn’t required — just Node.js v20+ on the system.Fix (npx, recommended):Authentication errors
Authentication errors
MCP tools return 401 or “unauthorized” errors.The CLI resolves authentication in this priority order: (1) Get a new service token from Account Settings → Service Tokens if needed.
SUPRSEND_SERVICE_TOKEN env var, (2) --service-token flag, (3) active profile.Plugin issues
Plugin not loading
Plugin not loading
Try removing and reinstalling the plugin:
- Claude Code:
- VS Code Copilot: right-click the
suprsendplugin in Agent Plugins → Installed → Uninstall, then runChat: Install Plugin From Sourcefrom the command palette and entersuprsend/claude-code-plugin.
MCP server not connecting
MCP server not connecting
-
Test the server standalone:
You should see no errors. Press Ctrl+C to stop. (Use
suprsenddirectly if you have a global install.) -
Verify the plugin’s
.mcp.jsonexists and contains the suprsend server config. -
Check host-specific logs:
- Claude Code: the MCP server output appears in the conversation when tool calls fail.
- VS Code Copilot: open the Output panel and select MCP — suprsend from the dropdown.
- Reinstall the plugin (see steps above).
Tools not appearing
Tools not appearing
If Claude doesn’t seem to have access to SuprSend tools:
- Make sure the plugin is loaded: verify with Claude that the suprsend plugin is active
- Try explicitly asking: “Use the suprsend MCP tools to list my workflows”
- Check that your CLI profile has the correct permissions
Skills issues
Skills not activating
Skills not activating
Skills load on demand — they activate when Claude detects you’re working on SuprSend-related tasks. If skills seem missing, try reinstalling the plugin:
Stale skill content
Stale skill content
Skills are bundled in the plugin repo. To get the latest version, reinstall the plugin — it will pull the latest from the GitHub repo.
Environment-specific
CI/CD environments
CI/CD environments
For non-interactive environments, set the
SUPRSEND_SERVICE_TOKEN environment variable. The MCP server reads from the same authentication configuration as the CLI.