(status: number, code: number, message: string)
| 72 | // INNER responses (no CORS) — byte-identical to the prior hand-rolled copy |
| 73 | // (`content-type: application/json` only) via the canonical renderer. |
| 74 | const jsonError = (status: number, code: number, message: string): Response => |
| 75 | jsonRpcErrorBody(status, code, message, { cors: false }); |
| 76 | |
| 77 | const formatBoundaryError = (error: unknown): unknown => { |
| 78 | // oxlint-disable-next-line executor/no-instanceof-error, executor/no-unknown-error-message -- boundary: MCP request handler catches unknown SDK/runtime failures for process logging |
no test coverage detected