Mesh Agent MCP Server

Official
MIT License
42
  • Apple
  • Linux

coingeckotokeninfoagent_get_token_price_multi

Fetch real-time cryptocurrency prices and market data for multiple tokens in one API call. Specify CoinGecko IDs, target currencies, and optional details like market cap, volume, and price changes.

Instructions

Fetch price data for multiple tokens at once using CoinGecko IDs. Efficiently retrieves current prices and optional market data for multiple cryptocurrencies in a single API call.

Input Schema

NameRequiredDescriptionDefault
idsYesComma-separated CoinGecko IDs of the tokens to query
include_24hr_changeNoInclude 24hr price change percentage
include_24hr_volNoInclude 24hr trading volume data
include_last_updated_atNoInclude timestamp of when the data was last updated
include_market_capNoInclude market capitalization data
precisionNoDecimal precision for currency values (e.g., 'full' for maximum precision)
vs_currenciesYesComma-separated target currencies (e.g., usd,eur,btc)usd

Input Schema (JSON Schema)

{ "properties": { "ids": { "description": "Comma-separated CoinGecko IDs of the tokens to query", "type": "string" }, "include_24hr_change": { "default": false, "description": "Include 24hr price change percentage", "type": "boolean" }, "include_24hr_vol": { "default": false, "description": "Include 24hr trading volume data", "type": "boolean" }, "include_last_updated_at": { "default": false, "description": "Include timestamp of when the data was last updated", "type": "boolean" }, "include_market_cap": { "default": false, "description": "Include market capitalization data", "type": "boolean" }, "precision": { "default": false, "description": "Decimal precision for currency values (e.g., 'full' for maximum precision)", "type": "string" }, "vs_currencies": { "default": "usd", "description": "Comma-separated target currencies (e.g., usd,eur,btc)", "type": "string" } }, "required": [ "ids", "vs_currencies" ], "type": "object" }
ID: 6dmo0hl0qq