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