Get Research Thread run
get_research_thread_runPoll a runId returned by discover_project_threads or run_research_thread, respecting pollAfterMs until the run is terminal.
When to use it
Poll a runId returned by discover_project_threads or run_research_thread, respecting pollAfterMs until the run is terminal.
List existing Threads first, inspect the case file, then add exact evidence, propose a revision, or start one bounded run and poll it to a terminal state.
Research Thread case files, exact evidence, pending revisions, or pollable metered run state and results.
Avoid using it when
You only need a one-off answer, or you intend to validate, reject, incorporate, apply, or dismiss a conclusion without human review.
Advanced input contract
Agent hosts use this JSON Schema to validate the exact input shape.
View full registry notes
Poll one authorized Research Thread run by runId. Respect pollAfterMs until status is completed, failed, or cancelled; completed results remain proposals or bounded case-file updates, not thesis adjudication. Use when: Poll a runId returned by discover_project_threads or run_research_thread, respecting pollAfterMs until the run is terminal.
View JSON Schema
{
"type": "object",
"properties": {
"runId": {
"type": "string",
"format": "uuid"
}
},
"required": [
"runId"
],
"additionalProperties": false
}