get_by_date_range
Retrieve posts published within a specified date range from your Markdown knowledge base. Input start and end dates in ISO format to filter and access relevant content efficiently.
Instructions
Get posts published within a date range.
Args: start_date: the start date in ISO format (YYYY-MM-DD) end_date: the end date in ISO format (YYYY-MM-DD) limit: the maximum number of posts to return
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | Yes | ||
limit | No | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"title": "End Date",
"type": "string"
},
"limit": {
"default": 50,
"title": "Limit",
"type": "integer"
},
"start_date": {
"title": "Start Date",
"type": "string"
}
},
"required": [
"start_date",
"end_date"
],
"title": "get_by_date_rangeArguments",
"type": "object"
}