nansen_wallet_profiler

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

Labels & profile for wallet X — returns Nansen labels (e.g. “Smart Money”, “Fund”, exchange/entity tags) for a wallet address, plus a best-effort USD balance summary. Example: nansen_wallet_profiler({ address: “0x28c6c06298d514db089934071355e5743bf21d60”, chain: “ethereum”, _apiKey: “your-nansen-key” })

Parameters

NameTypeRequiredDescription
addressstringyesWallet address to profile (required), e.g. “0x28c6…d60”.
chainstringnoChain the address lives on (default “ethereum”); use “all” to span chains where supported.
_apiKeystringyesNansen API key from your nansen.ai account (paid — $10/10k credits PAYG).

Example call

Arguments

{
  "address": "0x28c6c06298d514db089934071355e5743bf21d60",
  "chain": "ethereum",
  "_apiKey": "your-nansen-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/nansen/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nansen_wallet_profiler","arguments":{"address":"0x28c6c06298d514db089934071355e5743bf21d60","chain":"ethereum","_apiKey":"your-nansen-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('nansen_wallet_profiler', {
  "address": "0x28c6c06298d514db089934071355e5743bf21d60",
  "chain": "ethereum",
  "_apiKey": "your-nansen-api-key"
});

More examples

{
  "address": "0x1234567890abcdef1234567890abcdef12345678",
  "chain": "all",
  "_apiKey": "your-nansen-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 18, 2026