get-market-days
Retrieve trading market days within a specified date range using Alpaca MCP Server. Supports start and end date inputs to fetch accurate financial data efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end | Yes | ||
start | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"end": {
"type": "string"
},
"start": {
"type": "string"
}
},
"required": [
"start",
"end"
],
"type": "object"
}