get_stale_entities
Identify entities that have not been updated within a specified number of days. Filter by entity type to locate stale components or services for review or action.
Instructions
Find entities that haven't been updated recently
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | Yes | Number of days to consider an entity stale | |
entityType | No | Optional: filter by entity type (e.g., 'component', 'service') |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"description": "Number of days to consider an entity stale",
"type": "number"
},
"entityType": {
"description": "Optional: filter by entity type (e.g., 'component', 'service')",
"type": "string"
}
},
"required": [
"days"
],
"type": "object"
}