(service: string, methodId: string)
| 547 | }; |
| 548 | |
| 549 | const methodToolPath = (service: string, methodId: string): string => |
| 550 | methodId.startsWith(`${service}.`) ? methodId.slice(service.length + 1) : methodId; |
| 551 | |
| 552 | const collectMethods = (resource: unknown): DiscoveryMethod[] => { |
| 553 | const decoded = decodeDiscoveryResource(resource); |