get_recent_notes
Retrieve recently modified notes from the Bear App by specifying the number of days to look back and the maximum results to return.
Instructions
Get recently modified notes
Args: days: Number of days to look back limit: Maximum number of results
Returns: Recently modified notes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"default": 7,
"title": "Days",
"type": "integer"
},
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
}
},
"type": "object"
}