(executionId: string)
| 387 | ); |
| 388 | |
| 389 | const missingNativeExecution = (executionId: string): McpToolResult => ({ |
| 390 | content: [ |
| 391 | { |
| 392 | type: "text", |
| 393 | text: `Paused execution is unknown: ${executionId}. Run execute again to start a fresh flow.`, |
| 394 | }, |
| 395 | ], |
| 396 | structuredContent: { |
| 397 | status: "execution_not_found", |
| 398 | executionId, |
| 399 | }, |
| 400 | isError: true, |
| 401 | }); |
| 402 | |
| 403 | const createMcpAssembly = <E extends Cause.YieldableError>( |
| 404 | config: ExecutorMcpServerConfig<E>, |