FacetFlux
jobs.get
Poll a background job's state. Status values: queued, processing, success, failed. `progress` is a 0.0–1.0 fraction (null when the job hasn't reported any). Tenant-scoped: agents can only see jobs in their own tenant. Response: { jobId, kind, status, progress, retryCount, started, lastAlive, cancellationRequested }. Errors: { error: { code: 'not_found', ... } }.
Remote revuo:facetflux
Other tools also called jobs.get?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"jobId": {
"description": "Job id (Mongo ObjectId).",
"type": "string"
}
},
"required": [
"jobId"
]
}