(data: unknown)
| 1035 | // Helpers |
| 1036 | |
| 1037 | private jsonResult(data: unknown) { |
| 1038 | return { |
| 1039 | content: [{ type: "text" as const, text: stringifyMcpJson(data) }], |
| 1040 | }; |
| 1041 | } |
| 1042 | |
| 1043 | private errorResult(message: string) { |
| 1044 | return { |
no test coverage detected