---
title: "poll_execution"
description: "Check the status of a running execution."
sidebarTitle: "poll_execution"
lastUpdated: "2026-09-23"
---

> **For AI agents:** the complete documentation index is at [llms.txt](/llms.txt). Append `.md` to any page URL for its markdown version.

{/* GENERATED FILE: do not edit by hand. Regenerate with: node scripts/generate.mjs */}

Check the status of a running execution.

<Note>
  **Read-only · Calls external systems.** Safe to call: this tool does not modify data.
</Note>

## Parameters

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `result_id` | string | Yes | The result ID from start_execution |

## Example arguments

Illustrative arguments an agent supplies when calling this tool:

```json
{
  "result_id": "string"
}
```

## Description

```text
Returns the current status and per-test results when the execution reaches a terminal state (success, failed, timed out, maintenance). result_id from run_campaign or start_execution; use get_execution_detail for per-action failure analysis.
```

## Related

- [`run_campaign`](/mcp/tools/execution/run_campaign)
- [`start_execution`](/mcp/tools/execution/start_execution)
- [`get_execution_detail`](/mcp/tools/results/get_execution_detail)

## What's next?

<Columns cols={2}>
  <Card title="All MCP tools" icon="robot" href="/mcp/tools/overview">
    Browse the full tool reference by category.
  </Card>
  <Card title="Connect a client" icon="plug" href="/mcp/connect">
    Point Claude, Cursor, or Claude Code at the server.
  </Card>
</Columns>
