birdeye_token_overview
Pack: birdeye · Endpoint: https://gateway.pipeworx.io/birdeye/mcp
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({ address: “So11111111111111111111111111111111111111112”, chain: “solana”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
address | string | yes | Token contract/mint address, e.g. “So11111111111111111111111111111111111111112” (wrapped SOL) on Solana, or a 0x address on an EVM chain. |
chain | string | no | Blockchain to query (sent as the x-chain header). Defaults to “solana”. Examples: “solana”, “ethereum”, “base”, “bsc”, “polygon”. |
_apiKey | string | yes | Birdeye API key (get one at birdeye.so; limited free tier). |
Example call
Arguments
{
"address": "So11111111111111111111111111111111111111112",
"chain": "solana",
"_apiKey": "your-birdeye-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/birdeye/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"birdeye_token_overview","arguments":{"address":"So11111111111111111111111111111111111111112","chain":"solana","_apiKey":"your-birdeye-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('birdeye_token_overview', {
"address": "So11111111111111111111111111111111111111112",
"chain": "solana",
"_apiKey": "your-birdeye-api-key"
});
More examples
{
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"chain": "ethereum",
"_apiKey": "your-birdeye-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"birdeye": {
"url": "https://gateway.pipeworx.io/birdeye/mcp"
}
}
}
See Getting Started for client-specific install steps.