helius_assets_by_owner

Pack: helius · Endpoint: https://gateway.pipeworx.io/helius/mcp

Tokens & NFTs owned by a Solana wallet — lists every digital asset (fungible tokens, regular + compressed NFTs) held by an address via the Digital Asset Standard (DAS), with name, symbol, balance, and interface type. Example: helius_assets_by_owner({ address: “86xCnPeV69n6t3DnyGvkKobf9FdN2H9oiVDdaMpo2MMY”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
addressstringyesSolana wallet address (base58) whose assets to list
_apiKeystringyesHelius API key (free 1M credits/mo at helius.dev)

Example call

Arguments

{
  "address": "86xCnPeV69n6t3DnyGvkKobf9FdN2H9oiVDdaMpo2MMY",
  "_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_assets_by_owner","arguments":{"address":"86xCnPeV69n6t3DnyGvkKobf9FdN2H9oiVDdaMpo2MMY","_apiKey":"your-helius-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('helius_assets_by_owner', {
  "address": "86xCnPeV69n6t3DnyGvkKobf9FdN2H9oiVDdaMpo2MMY",
  "_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.

Regenerated from source · build August 18, 2026