get_crypto_price_eod
Retrieve historical end-of-day cryptocurrency prices via Yahoo Finance MCP Server, supporting both light and full data modes for analysis and insights.
Instructions
获取加密货币的历史收盘价,可选简略或完整模式。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mode | No | light | |
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"mode": {
"default": "light",
"title": "Mode",
"type": "string"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"title": "get_crypto_price_eodArguments",
"type": "object"
}