Solana RPC (keyless)
live CryptoFinanceSolana wallet lookups without a key — SPL token holdings, SOL balance, transaction history and single-transaction detail, straight from public Solana JSON-RPC.
Tools
solana_wallet_tokens SPL token holdings of a Solana wallet: mint address, token balance, decimals and token-account address for
No parameters required.
Try it
solana_wallet_balance Native SOL balance of a Solana address, in lamports and SOL, with the slot it was read at. Answers "how
No parameters required.
Try it
solana_wallet_transactions Recent transaction history for a Solana address: signature, slot, block time, success or failure, and memo
No parameters required.
Try it
solana_transaction Details of one Solana transaction by signature: block time, slot, fee, success or failure, signers, the
No parameters required.
Try it
solana_rpc_health Live reachability of each public Solana JSON-RPC endpoint this pack uses, per method: current slot,
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/solana-rpc/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/solana-rpc/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"solana_wallet_tokens","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("solana_wallet_tokens", {}); // Or ask in plain English:
const answer = await px.ask("solana wallet lookups without a key — spl token holdings, sol balance, transaction history and single-transaction detail, straight from public solana json-rpc");