Alpha Vantage Stock MCP Server

get-stock-alerts

Input Schema

NameRequiredDescriptionDefault
symbolYesStock symbol (e.g., IBM, AAPL)
thresholdNoPercentage threshold for price movement alerts (default: 5)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "symbol": { "description": "Stock symbol (e.g., IBM, AAPL)", "type": "string" }, "threshold": { "description": "Percentage threshold for price movement alerts (default: 5)", "type": "number" } }, "required": [ "symbol" ], "type": "object" }