Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Trade perpetual futures on the Phoenix DEX (Solana) via an AI-native CLI with paper trading, grid strategies, TWAP execution, technical-indicator-based strategies, and full position/collateral management.
npx claudepluginhub ellipsis-labs/vulcan-cliReusable prompt files for AI agents using the Vulcan MCP server to trade on Phoenix Perpetuals DEX.
Use this template when adding a Vulcan-owned strategy such as grid, TA, or volatility-based execution.
You have access to Vulcan, an AI-native CLI and MCP server for Phoenix Perpetuals on Solana. Vulcan is live financial software: dangerous commands can submit irreversible transactions.
Error category routing, tx_failed recovery, and network error handling for Vulcan.
Canonical taxonomy of Vulcan's execution modes (Observe / Paper / Dry-Run / Confirm-Each / Auto-Execute), with explicit instructions for when to ask the user which mode, how to format the question, and what follow-up to collect per mode. Load whenever the user asks 'should this be paper or live?' or before any strategy/trade launch.
Grid trading with layered limit orders across a price range on Phoenix DEX perpetuals.
Convert desired token amounts to base lots — the most common agent mistake.
Deposit, withdraw, transfer collateral, isolated margin, and leverage tier management.
Requires secrets
Needs API keys or credentials to function
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
This plugin requires configuration values that are prompted when the plugin is enabled. Sensitive values are stored in your system keychain.
wallet_nameName of the stored Vulcan wallet to unlock for live signing (run `vulcan wallet list` to see options). Leave blank to use only read-only and paper-trading tools.
${user_config.wallet_name}wallet_passwordPassword that decrypts the stored wallet. Leave blank to use only read-only and paper-trading tools. Stored in the host keychain — never written to the MCP config file.
${user_config.wallet_password}Agent-first CLI for the Crypto.com Exchange API. Market data by default; live trading opt-in via API keys. Available --services: market (default), trade, account, advanced, margin, staking, funding, fiat. Update args in MCP settings to expand capabilities.
Multi-DEX perpetual futures CLI + MCP server for AI agents — Pacifica (Solana), Hyperliquid (HyperEVM), Lighter (Ethereum), Aster (BNB Chain). Trade, bridge, arb, and manage positions via natural language.
Track crypto futures, options, perpetual swaps with funding rates, open interest, and derivatives market analysis
No description provided.
Trading Skills — live AI crypto trading signals with entry, SL, TP, leverage, confidence, verification with P&L tracking. Free during beta.
Agent-first CLI for trading crypto, stocks, forex, and derivatives on Kraken. Paper trading by default; live trading opt-in via API keys.
Agent and human-friendly CLI for trading perpetual futures on Phoenix.
⚠️ Experimental software: live commands can execute irreversible financial transactions on Solana Mainnet. You are responsible for wallet security, agent permissions, and all trading outcomes.
"Give me a full portfolio snapshot: cross + isolated margin health, open positions with unrealized PnL %, resting orders, and any funding exposure I should know about."
"Scan the top 5 markets on Phoenix by 24h volume — give me funding rate, mark price, and a one-line take on each."
"Open a $200 long on SOL then attach a TP at +5% and SL at -3%."
"I need to long $5,000 of SOL. Run a TWAP over 20 minutes in 10 slices.
"Watch BTC on 15m and alert me when EMA(9) crosses EMA(21), paper only"
"Build a TA strategy that goes long when RSI(14) crosses above 30 on the 5m and exits when it crosses 70. Paper mode first, $500 per entry"
Install the latest release on macOS/Linux:
curl -fsSL https://github.com/Ellipsis-Labs/vulcan-cli/releases/latest/download/install.sh | sh
The installer verifies the release archive against vulcan-checksums-sha256.txt and installs to ~/.local/bin/vulcan by default. Make sure ~/.local/bin is on your PATH.
Install a specific version:
curl -fsSL https://github.com/Ellipsis-Labs/vulcan-cli/releases/download/v0.5.3/install.sh | sh
Build from source:
cargo install --path vulcan
Verify:
vulcan version
Check for newer releases:
vulcan update check
This is read-only — vulcan never modifies its own binary. When an update is available it prints a method-appropriate hint: re-run the install one-liner above for default or custom ~/.local/bin-style installs, or use your package manager for Homebrew/Nix/distro installs. Agents that load vulcan://agent/health see the same information under cli_update.
# Guided setup for config, wallet, registration, deposit, and agent options
vulcan setup
# Check installation, config, wallet, RPC/API, registration, and paper readiness
vulcan status -o json
# Read market data
vulcan market list -o json
vulcan market ticker SOL -o json
# Begin paper trading
vulcan paper init --balance 10000 -o json
vulcan paper buy SOL --notional-usdc 100 --type market -o json
vulcan paper status -o json
Vulcan installs a local MCP server and a bundled set of Agent Skills into your agent host (Claude Code, Cursor, Codex, or any agentskills-compatible client). Two commands per host: one to install the skill files, one to register the MCP server. Live trading is opt-in.
Supported --target values: claude, cursor, codex, agentskills. --scope user writes to your user-level config (default); --scope project writes to the current project.
# Bundled Agent Skills (workflow guides, recipes, runtime contract)
vulcan agent install --target claude --scope user
# Register the Vulcan MCP server with the host's standard config file
vulcan agent mcp install --target claude --scope user
# End-to-end probe: spawn the server, handshake, assert vulcan_* tools appear
vulcan agent mcp diagnose --target claude --scope user
Fully restart your host afterward so it picks up the new MCP server.
Live trading requires a stored wallet to unlock for signing and live signing permission. You can setup at install time with --dangerous
# Wire up the wallet for live signing.
# Prompts for the wallet password interactively, validates decryption
vulcan agent mcp install --target claude --scope user --dangerous
After restart, dangerous tools (live trades, deposits, withdrawals, cancellations) appear in the agent's tool list and can be invoked with acknowledged: true.
⚠️ Both flows write your wallet password into the host's MCP config file on disk. The file is created
chmod 0600— protect it like any other credential file.
vulcan agent mcp set-wallet <wallet-name> --target claude --scope user
# Show what's installed and what's missing per host
vulcan agent mcp doctor --target claude --scope user
# Reinstall command path / args while preserving the wallet password env
vulcan agent mcp install --target claude --scope user --repair