Schedules grid operations to run at a future time. Returns a handle for each scheduled event so the owner can trigger it early, cancel it, or list pending events. Firing runs the operation with the authority captured when it was scheduled.
| Name: | scheduler |
| Class: | covia.adapter.SchedulerAdapter |
This adapter provides 4 MCP tool(s) for AI agent integration:
| Tool Name | Description |
|---|---|
| scheduler_list | List the caller's pending scheduled events, soonest first. Each entry carries its handle, operation reference, and fire time. |
| scheduler_trigger | Fire a scheduled event now, ahead of its time, then remove it. Only the event's owner may trigger it. Returns the fired operation's result. |
| scheduler_cancel | Cancel a scheduled event by its handle, removing it before it fires. Only the event's owner may cancel it. |
| scheduler_schedule | Schedule a grid operation to run at a future time. Returns a handle used to trigger the event early or cancel it. The operation fires with the authority captured from the caller. |