token_risk_solana

Pack: token-risk · Endpoint: https://gateway.pipeworx.io/token-risk/mcp

Rug-pull / scam RISK SCREENING for a Solana SPL token. Pass the token MINT address. Detects active mint authority (supply can be inflated), freeze authority (your balance can be frozen), closable/mutable-metadata flags, transfer fees/hooks, and holder + LP concentration. Returns a computed red_flags[] list plus the raw GoPlus Security facts. Keyless, live on-chain. Use for “is this Solana token safe / a rug?”.

Parameters

NameTypeRequiredDescription
contract_addressstringyesThe SPL token mint address.

Example call

Arguments

{
  "contract_address": "EPjFWaLb3odccxiLVXACsimbMbGgRs3YzNqEHFx5THv"
}

curl

curl -X POST https://gateway.pipeworx.io/token-risk/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"token_risk_solana","arguments":{"contract_address":"EPjFWaLb3odccxiLVXACsimbMbGgRs3YzNqEHFx5THv"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('token_risk_solana', {
  "contract_address": "EPjFWaLb3odccxiLVXACsimbMbGgRs3YzNqEHFx5THv"
});

More examples

{
  "contract_address": "So11111111111111111111111111111111111111112"
}

Connect

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

{
  "mcpServers": {
    "token-risk": {
      "url": "https://gateway.pipeworx.io/token-risk/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 22, 2026