get_account_detail

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

Overview of a Solana account: SOL balance (lamports + UI), owner program, executable flag, rent epoch.

Parameters

NameTypeRequiredDescription
addressstringyesSolana public key (base58)

Example call

Arguments

{
  "address": "SolendFtLatfDwGrPfLVLocked111111111111111"
}

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_account_detail","arguments":{"address":"SolendFtLatfDwGrPfLVLocked111111111111111"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_account_detail', {
  "address": "SolendFtLatfDwGrPfLVLocked111111111111111"
});

Response shape

Always returns: path, data

FieldTypeDescription
pathstringAPI endpoint path
dataobjectAccount details including balance, owner, executable flag, rent epoch
Full JSON Schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "API endpoint path"
    },
    "data": {
      "type": "object",
      "description": "Account details including balance, owner, executable flag, rent epoch"
    }
  },
  "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