get_current_crypto_price
Retrieve real-time cryptocurrency prices by specifying the ticker symbol, facilitating accurate financial analysis and decision-making within the Financial Datasets MCP Server environment.
Instructions
Get the current / latest price of a crypto currency.
Args:
ticker: Ticker symbol of the crypto currency (e.g. BTC-USD). The list of available crypto tickers can be retrieved via the get_available_crypto_tickers tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_current_crypto_priceArguments",
"type": "object"
}