get_quick_prices
Retrieve current market data for KAIA, BTC, and ETH including prices, market cap, trading volume, and price changes.
Instructions
Get quick comprehensive market overview including prices, market capitalization, 24h trading volume, and 24h price changes for KAIA, BTC, and ETH
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/mcp/price-api/price_tools.ts:115-137 (handler)The 'get_quick_prices' tool is implemented in 'GetQuickPricesTool', which calls 'getTokenPrices' with a fixed list of symbols ['KAIA', 'BTC', 'ETH'].
export const GetQuickPricesTool: McpTool = { name: "get_quick_prices", description: "Get quick comprehensive market overview including prices, market capitalization, 24h trading volume, and 24h price changes for KAIA, BTC, and ETH", schema: {}, handler: async (agent: WalletAgent, input: Record<string, any>) => { const result = await getTokenPrices(['KAIA', 'BTC', 'ETH']); if (!result.success) { return { status: "error", message: (result as any).error }; } return { status: "success", prices: result.prices, count: result.count, summary: "Quick comprehensive market overview of KAIA, BTC, and ETH", timestamp: new Date().toISOString() }; }, };