get_token_meta

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

Metadata for an SPL token mint: name, symbol, decimals, supply, icon, market cap, holders, social links.

Parameters

NameTypeRequiredDescription
token_addressstringyesSPL token mint address

Example call

Arguments

{
  "token_address": "EPjFWaLb3odcccccccccccccccccccccccccccccccc"
}

curl

curl -X POST https://gateway.pipeworx.io/solscan/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_token_meta","arguments":{"token_address":"EPjFWaLb3odcccccccccccccccccccccccccccccccc"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_token_meta', {
  "token_address": "EPjFWaLb3odcccccccccccccccccccccccccccccccc"
});

Response shape

Always returns: path, data

FieldTypeDescription
pathstringAPI endpoint path
dataobjectSPL token metadata: name, symbol, decimals, supply, icon, market cap, holders, social links
Full JSON Schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "API endpoint path"
    },
    "data": {
      "type": "object",
      "description": "SPL token metadata: name, symbol, decimals, supply, icon, market cap, holders, social links"
    }
  },
  "required": [
    "path",
    "data"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "solscan": {
      "url": "https://gateway.pipeworx.io/solscan/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026