(tokens: readonly string[])
| 529 | const pathTokens = tokenizeSearchText(tool.path); |
| 530 | |
| 531 | const isPrefixMatch = (tokens: readonly string[]): boolean => |
| 532 | namespaceTokens.every((token, index) => tokens[index] === token); |
| 533 | |
| 534 | return isPrefixMatch(integrationTokens) || isPrefixMatch(pathTokens); |
| 535 | }; |