MCP tool · Orientation
get_job
Poll a long-running (asynchronous) operation you started.
get_job
Read-onlyIdempotent
Description
Poll a long-running (asynchronous) operation you started. Some operations do not finish on the call that starts them — issuing an SSL certificate, creating an on-demand backup, installing an app, compressing or extracting files, taking a VPS snapshot — and instead return a {jobId, status, pollWith:"get_job"} handle. Pass that jobId here. Reports status — queued or running while it works, then succeeded (with the result), failed (with an error {code, message}), or cancelled — plus progress (0–100) when the operation reports it.
Input
| Name | Type | Description |
|---|---|---|
id
required
|
string |
The async job id (job_…) returned by the operation that started the work, in its jobId/pollWith handle.
|