helius_asset
Pack: helius · Endpoint: https://gateway.pipeworx.io/helius/mcp
Details for a Solana asset/mint — full Digital Asset Standard (DAS) record for a single token or NFT by its mint address: metadata (name/symbol/interface), current ownership, royalty config, and supply. Example: helius_asset({ id: “F9Lw3ki3hJ7PF9HQXsBzoY8GyE6sPoEZZdXJBsTTD2rk”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Asset ID — typically the mint address of the token/NFT (base58) |
_apiKey | string | yes | Helius API key (free 1M credits/mo at helius.dev) |
Example call
Arguments
{
"id": "F9Lw3ki3hJ7PF9HQXsBzoY8GyE6sPoEZZdXJBsTTD2rk",
"_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_asset","arguments":{"id":"F9Lw3ki3hJ7PF9HQXsBzoY8GyE6sPoEZZdXJBsTTD2rk","_apiKey":"your-helius-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('helius_asset', {
"id": "F9Lw3ki3hJ7PF9HQXsBzoY8GyE6sPoEZZdXJBsTTD2rk",
"_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.