AlphaVantage-MCP

by berlinbra
Verified
MIT License
13
  • Apple

get-time-series

Get daily time series data for a stock

Input Schema

NameRequiredDescriptionDefault
outputsizeNocompact (latest 100 data points) or full (up to 20 years of data)compact
symbolYesStock symbol (e.g., AAPL, MSFT)

Input Schema (JSON Schema)

{ "properties": { "outputsize": { "default": "compact", "description": "compact (latest 100 data points) or full (up to 20 years of data)", "enum": [ "compact", "full" ], "type": "string" }, "symbol": { "description": "Stock symbol (e.g., AAPL, MSFT)", "type": "string" } }, "required": [ "symbol" ], "type": "object" }