Adapter Details: scheduler

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

MCP Tools

This adapter provides 4 MCP tool(s) for AI agent integration:

Tool NameDescription
scheduler_listList the caller's pending scheduled events, soonest first. Each entry carries its handle, operation reference, and fire time.
scheduler_triggerFire 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_cancelCancel a scheduled event by its handle, removing it before it fires. Only the event's owner may cancel it.
scheduler_scheduleSchedule 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.

Navigation

Back to all adapters

Back to index