getCryptoPrice
Retrieve the current USD price of any cryptocurrency using its symbol or CoinGecko ID. Designed for accurate pricing and broad asset support on the agentek-eth MCP server.
Instructions
Get the current price of a cryptocurrency in USD
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Cryptocurrency symbol (e.g., BTC, ETH, SOL) or CoinGecko ID (e.g., bitcoin, ethereum, solana) for better accuracy and wider asset support |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"description": "Cryptocurrency symbol (e.g., BTC, ETH, SOL) or CoinGecko ID (e.g., bitcoin, ethereum, solana) for better accuracy and wider asset support",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}