(namespace: string | undefined, toolId: string)
| 94 | // --------------------------------------------------------------------------- |
| 95 | |
| 96 | export const joinToolPath = (namespace: string | undefined, toolId: string): string => |
| 97 | namespace?.trim() ? `${namespace}.${toolId}` : toolId; |
| 98 | |
| 99 | export const extractManifestFromListToolsResult = ( |
| 100 | listToolsResult: unknown, |