---
title: "get_execution_detail"
description: "Get detailed results of a test execution (campaign or Tests-campaign runs)."
sidebarTitle: "get_execution_detail"
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 */}

Get detailed results of a test execution (campaign or Tests-campaign runs).

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

## Parameters

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `include_full_json` | boolean | No | Set to true to include the raw json field containing the complete execution payload with full action step details. Warning: this can be very large for multi-test campaigns. Only use when you need step-level detail beyond what execution_summary provides. |
| `result_id` | string | Yes | The execution/result ID. Obtain from run_campaign response, poll_execution response, start_execution response, or list_executions results. |

## Example arguments

Illustrative arguments an agent supplies when calling this tool:

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

## Description

```text
Returns metadata plus a per-test view: execution_summary (per-test/per-action status, duration, variables, error messages) when the execution's JSON is available, or a lightweight tests_overview for queued/running results without it. Failed tests are always included; surplus passing tests may be elided in very large campaigns (see tests_elided / tests_overview_omitted). Set include_full_json=true when you need step-level details (selectors, HTTP payloads) or the complete per-test list. For monitoring (scheduled) runs use get_monitoring_result instead.
```

## Related

- [`get_monitoring_result`](/mcp/tools/monitoring-results/get_monitoring_result)

## 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>
