(name: string)
| 25 | * @returns The normalized name with all hyphens converted to underscores |
| 26 | */ |
| 27 | export function normalizeForComparison(name: string): string { |
| 28 | return name.replace(/-/g, "_") |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Normalize an MCP tool name by converting underscore separators back to hyphens. |
no test coverage detected