(name: string)
| 585 | ]) |
| 586 | |
| 587 | function normalize(name: string): string { |
| 588 | return name |
| 589 | .replace(/([a-z])([A-Z])/g, '$1_$2') |
| 590 | .replace(/-/g, '_') |
| 591 | .toLowerCase() |
| 592 | } |
| 593 | |
| 594 | export function classifyMcpToolForCollapse( |
| 595 | _serverName: string, |
no outgoing calls
no test coverage detected