(execution: ExecutionResult)
| 118 | Effect.annotateCurrentSpan(executeOutcomeAttributes(result)); |
| 119 | |
| 120 | const annotateExecutionOutcome = (execution: ExecutionResult) => |
| 121 | execution.status === "paused" |
| 122 | ? Effect.annotateCurrentSpan({ "mcp.execute.outcome": "paused" }) |
| 123 | : annotateExecuteOutcome(execution.result); |
| 124 | |
| 125 | // --------------------------------------------------------------------------- |
| 126 | // Result formatting |
no test coverage detected