For the complete documentation index, see llms.txt. This page is also available as Markdown.

wait_for_run

Poll a run until it finishes (or the timeout) and return its results digest.

Block until the run finishes, polling every 3 seconds, and return its results digest.

This is an MCP / CLI convenience — there is no REST wait endpoint. Over raw HTTP, poll GET …/runs/{runId} yourself. See Long-running operations.

Arguments

Argument
Type
Required
Description

runId

integer

yes

The run id from run_feature.

timeoutSeconds

integer

no

How long to wait (default 120, max 170).

project

string

no

Project public id (defaults to the configured project).

Tool wait_for_run{ "runId": 214 }.

testvibe run "Login Functionality" --wait

Result

The same payload as get_run, taken when status left running — or at the timeout.

Last updated

Was this helpful?