(tools: readonly { readonly name: unknown }[])
| 66 | ); |
| 67 | |
| 68 | const toolNames = (tools: readonly { readonly name: unknown }[]): readonly string[] => |
| 69 | tools.map((tool) => String(tool.name)).sort(); |
| 70 | |
| 71 | describe("MCP tool-catalog sync (end-to-end)", () => { |
| 72 | it.effect( |