Back to Registry
View Author Profile
Official Verified
pacifica
Trade perpetuals on Pacifica via 36 MCP tools. Market data, account monitoring, order execution, subaccounts, and real-time WebSocket streaming on Solana. Trigger when the user asks about crypto prices, perps, trading, positions, orders, funding rates, or Pacifica. Skip for general knowledge, math, or questions answerable from training data.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/blockchain-oracle/pacificaOr
Pacifica MCP Skill
When to Use
Trigger when the user:
- Asks about crypto prices, perps, or trading on Pacifica / Solana
- Wants to check their trading account, positions, or open orders
- Wants to place, modify, or cancel trades
- Wants market data (orderbooks, candles, funding rates, recent trades)
- Mentions BTC, ETH, SOL, or any perpetual contract on Pacifica
- Wants real-time price/trade monitoring via WebSocket
When NOT to Use
- General knowledge ("What is a perpetual contract?")
- Math or computation ("What's 10x leverage on $1000?")
- Questions answerable from training data alone
Tool Selection
| User Intent | Tool | Key Params |
|---|---|---|
| Price of X | pacifica-prices | symbol |
| My account/balance | pacifica-account | — |
| My positions | pacifica-positions | — |
| Open a long / buy | pacifica-market-order | symbol, side: "bid", amount |
| Open a short / sell | pacifica-market-order | symbol, side: "ask", amount |
| Limit order | pacifica-limit-order | symbol, side, amount, price, tif |
| Stop order | pacifica-stop-order | symbol, side, stop_price, amount |
| Set TP / SL | pacifica-set-tpsl | symbol, side (exit side!), take_profit_price, stop_loss_price |
| Cancel order | pacifica-cancel-order | symbol, order_id (omit to cancel all) |
| Cancel stop order | pacifica-cancel-stop | symbol, order_id |
| Edit order | pacifica-edit-order | symbol, order_id, price, amount |
| Batch orders | pacifica-batch-order | actions (array, max 10) |
| Orderbook | pacifica-orderbook | symbol |
| Candles / chart | pacifica-candles | symbol, interval, limit |
| Mark price candles | pacifica-mark-candles | symbol, interval, limit |
| Funding rates | pacifica-funding-rates | symbol, limit |
| Recent trades | pacifica-recent-trades | symbol |
| Available markets | pacifica-markets | — |
| Order history | pacifica-order-history | limit |
| Trade history / PnL | pacifica-trade-history | symbol, limit |
| Equity curve | pacifica-portfolio | time_range |
| Deposits / withdrawals | pacifica-balance-history | limit |
| Order details by ID | pacifica-order-by-id | order_id |
| Account settings | pacifica-account-settings | — |
| My open orders | pacifica-orders | — |
| Set leverage | pacifica-set-leverage | symbol, leverage |
| Cross / isolated margin | pacifica-set-margin-mode | symbol, is_isolated |
| Wallet address | pacifica-wallet | — |
| Create subaccount | pacifica-create-subaccount | — |
| List subaccounts | pacifica-list-subaccounts | — |
| Transfer USDC to subaccount | pacifica-transfer-funds | to_account, amount |
| Withdraw USDC | pacifica-withdraw | amount |
| All available tools | pacifica-tools | — |
| Watch trades live | pacifica-watch | channel, symbol, duration |
| Monitor real-time | pacifica-watch-start → pacifica-watch-read → pacifica-watch-stop | channel, symbol |
Parameter Guide
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-blockchain-oracle-pacifica": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.