Vybe wallet analytics
Use the Solana MCP by Vybe tools (list-endpoints, search-endpoints, get-endpoint, query-vybe-api, query-vybe-api-batch) to answer wallet questions with live data.
When to use
- Wallet balances, holdings, or portfolio value
- Realized / unrealized PnL for a wallet
- Transfer history or counterparties
- Empty / dust token accounts
Workflow
- Confirm you have a Solana wallet address (base58 pubkey). If missing, ask for it.
- Discover the right route:
- Prefer
search-endpointswith keywords likewallet,pnl,transfer,token-balance. - Or
list-endpointsthen pick the matching path.
- Prefer
- Call
get-endpointfor the chosen path + method to learn required params, auth, and response shape. - Call
query-vybe-apiwith thepathandqueryparams, orquery-vybe-api-batchwhen covering several wallets in one call. - Summarize results for the user: top holdings, USD values when present, PnL figures, notable counterparties. Cite the endpoint used.
- Offer a clear follow-up (e.g. deeper PnL window, specific mint, transfer filters).
Rules
- Never ask for or handle private keys / seed phrases.
- Do not broadcast transactions; if a route returns an unsigned tx, say the user must sign in their own wallet.
- If OAuth / auth is required, tell the user to connect the Vybe MCP connector and retry.
- Prefer read-only endpoints for analytics. Use
build-vybe-transactiononly when the user explicitly asks for a transaction payload.