(data: unknown, guidance?: string)
| 63 | } |
| 64 | |
| 65 | function textResult(data: unknown, guidance?: string) { |
| 66 | return { content: [{ type: "text" as const, text: safeSerialize(data, MAX_RESPONSE_CHARS, guidance) }] } |
| 67 | } |
| 68 | |
| 69 | export function registerTools( |
| 70 | mcp: McpServer, |
no test coverage detected