Birdeye

live CryptoData

Solana & multichain token analytics — price, holders, DEX trades, and top traders. BYO key.

4 tools
0ms auth
free tier 50 calls/day

Tools

birdeye_token_overview

Token overview — price, liquidity, volume for token X. Returns market cap, 24h price change, and holder count for a Solana (or multichain) token by contract address. Example: birdeye_token_overview({

No parameters required.

Try it
birdeye_token_holders

Top holders of token X. Returns the largest wallet holders of a token (owner address, token amount, and share of supply) by contract address. Example: birdeye_token_holders({ address: "So1111111111111

No parameters required.

Try it
birdeye_token_trades

Recent DEX trades for token X. Returns the latest on-chain swap transactions for a token (side, amounts, price, trader, timestamp) by contract address. Example: birdeye_token_trades({ address: "So1111

No parameters required.

Try it
birdeye_gainers_losers

Top trader gainers/losers. Returns the ranked list of wallets by realized/unrealized PnL over a time window (yesterday/today/1W/30d/90d). Example: birdeye_gainers_losers({ type: "1W", sort_by: "PnL",

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/birdeye/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/birdeye/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"birdeye_token_overview","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("birdeye_token_overview", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("solana & multichain token analytics — price, holders, dex trades, and top traders");