(execution: ExecutionResult)
| 99 | }); |
| 100 | |
| 101 | const annotateExecutionOutcome = (execution: ExecutionResult) => |
| 102 | execution.status === "paused" |
| 103 | ? Effect.annotateCurrentSpan({ "mcp.execute.outcome": "paused" }) |
| 104 | : annotateExecuteOutcome(execution.result); |
| 105 | |
| 106 | // --------------------------------------------------------------------------- |
| 107 | // Result formatting |
no test coverage detected