helius_parsed_transactions
Pack: helius · Endpoint: https://gateway.pipeworx.io/helius/mcp
Parsed transaction history for a Solana address — human-readable, enriched tx feed (swaps, NFT sales, transfers) with a plain-English description, type, source protocol, fee, and timestamp for each transaction. Deeper than a raw signature list. Example: helius_parsed_transactions({ address: “86xCnPeV69n6t3DnyGvkKobf9FdN2H9oiVDdaMpo2MMY”, limit: 20, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
address | string | yes | Solana wallet or program address (base58), e.g. “86xCnPeV69n6t3DnyGvkKobf9FdN2H9oiVDdaMpo2MMY” |
limit | integer | no | Max transactions to return (default 20, max 50) |
_apiKey | string | yes | Helius API key (free 1M credits/mo at helius.dev) |
Example call
Arguments
{
"address": "86xCnPeV69n6t3DnyGvkKobf9FdN2H9oiVDdaMpo2MMY",
"limit": 20,
"_apiKey": "your-helius-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/helius/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"helius_parsed_transactions","arguments":{"address":"86xCnPeV69n6t3DnyGvkKobf9FdN2H9oiVDdaMpo2MMY","limit":20,"_apiKey":"your-helius-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('helius_parsed_transactions', {
"address": "86xCnPeV69n6t3DnyGvkKobf9FdN2H9oiVDdaMpo2MMY",
"limit": 20,
"_apiKey": "your-helius-api-key"
});
More examples
{
"address": "JUPyiwrYJFskUPiHa7hkewrapped11111111111111111",
"_apiKey": "your-helius-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"helius": {
"url": "https://gateway.pipeworx.io/helius/mcp"
}
}
}
See Getting Started for client-specific install steps.