Integration Options
Choose between the Vultisig CLI, TypeScript SDK, Marketplace plugins, and MCP tooling for AI agent integrations.
CLI (start here)
npm install -g @vultisig/cli
# Structured wallet commands
vultisig portfolio --output json
vultisig swap-quote ethereum bitcoin 0.1 --output json
vultisig swap ethereum bitcoin 0.1 --output json
# Natural-language, one-shot — designed for AI agent integration
vultisig agent ask "What is my ETH balance?" --password "$VAULT_PASSWORD" --jsonTypeScript SDK
import { Chain, Vultisig } from '@vultisig/sdk'
const sdk = new Vultisig()
await sdk.initialize()
const vault = await sdk.getActiveVault()
if (!vault) throw new Error('No active vault')
const portfolio = await vault.portfolio('usd')
const preview = await vault.send({
chain: Chain.Ethereum,
to: '0xRecipient',
amount: '0.1',
dryRun: true,
})Marketplace plugins
Agent discovery resources
Resource
Purpose
Last updated
Was this helpful?
