(namespace: string | undefined, toolId: string)
| 108 | // --------------------------------------------------------------------------- |
| 109 | |
| 110 | export const joinToolPath = (namespace: string | undefined, toolId: string): string => |
| 111 | namespace?.trim() ? `${namespace}.${toolId}` : toolId; |
| 112 | |
| 113 | export const extractManifestFromListToolsResult = ( |
| 114 | listToolsResult: unknown, |