AlphaVantage-MCP

by berlinbra
Verified
MIT License
13
  • Apple

get-crypto-exchange-rate

Get current cryptocurrency exchange rate

Input Schema

NameRequiredDescriptionDefault
crypto_symbolYesCryptocurrency symbol (e.g., BTC, ETH)
marketNoMarket currency (e.g., USD, EUR)USD

Input Schema (JSON Schema)

{ "properties": { "crypto_symbol": { "description": "Cryptocurrency symbol (e.g., BTC, ETH)", "type": "string" }, "market": { "default": "USD", "description": "Market currency (e.g., USD, EUR)", "type": "string" } }, "required": [ "crypto_symbol" ], "type": "object" }