get-news
Retrieve financial news data by specifying date range and stock symbols using the Alpaca MCP Server tool for market analysis and insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end | Yes | ||
start | Yes | ||
symbols | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"end": {
"type": "string"
},
"start": {
"type": "string"
},
"symbols": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"start",
"end",
"symbols"
],
"type": "object"
}