crypto_daily
Retrieve daily time series data for cryptocurrencies by specifying the symbol, market, and data format. Integrates with MCP Avantage for accurate and comprehensive financial insights.
Instructions
Fetches daily time series data for a cryptocurrency.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datatype | No | Data format for the response. | json |
market | Yes | The exchange market (e.g., "USD", "EUR"). | |
symbol | Yes | The cryptocurrency symbol (e.g., "BTC"). |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Parameters for fetching daily/weekly/monthly crypto time series data.",
"properties": {
"datatype": {
"default": "json",
"description": "Data format for the response.",
"enum": [
"json",
"csv"
],
"type": "string"
},
"market": {
"description": "The exchange market (e.g., \"USD\", \"EUR\").",
"type": "string"
},
"symbol": {
"description": "The cryptocurrency symbol (e.g., \"BTC\").",
"type": "string"
}
},
"required": [
"symbol",
"market"
],
"type": "object"
}