@cronicorn/mcp-server 1.14.1 → 1.14.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -176,7 +176,8 @@ The Scheduler writes back to the database:
176
176
  - `lastRunAt = now` (when this execution started)
177
177
  - `nextRunAt = governor result` (when to run next)
178
178
  - `failureCount`: reset to 0 on success, increment on failure
179
- - Clear expired AI hints (if `aiHintExpiresAt <= now`)
179
+ - Clear consumed one-shot hints (if `aiHintNextRunAt <= now`)
180
+ - Clear all AI hints if TTL expired (if `aiHintExpiresAt <= now`)
180
181
 
181
182
  The database update is atomic. If two Schedulers somehow claimed the same endpoint (shouldn't happen due to locks, but defensive programming), only one update succeeds.
182
183
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cronicorn/mcp-server",
3
- "version": "1.14.1",
3
+ "version": "1.14.2",
4
4
  "type": "module",
5
5
  "description": "MCP server for Cronicorn - enables AI agents to manage cron jobs via Model Context Protocol",
6
6
  "author": "Cronicorn",