(tools: readonly { readonly name: unknown }[])
| 73 | ); |
| 74 | |
| 75 | const toolNames = (tools: readonly { readonly name: unknown }[]): readonly string[] => |
| 76 | tools.map((tool) => String(tool.name)).sort(); |
| 77 | |
| 78 | describe("MCP tool-catalog sync (end-to-end)", () => { |
| 79 | it.effect( |