(execution: ExecutionResult)
| 77 | ); |
| 78 | |
| 79 | const annotateExecutionOutcome = (execution: ExecutionResult) => |
| 80 | execution.status === "paused" |
| 81 | ? Effect.annotateCurrentSpan({ "mcp.execute.outcome": "paused" }) |
| 82 | : annotateExecuteOutcome(execution.result); |
| 83 | |
| 84 | // --------------------------------------------------------------------------- |
| 85 | // Result formatting |
no test coverage detected