(resource: McpResource)
| 145 | : Promise.resolve(null); |
| 146 | |
| 147 | const configForResource = async (resource: McpResource): Promise<LocalMcpServerConfig> => { |
| 148 | if (!handlerConfig.createConfigForResource) return { config: handlerConfig.defaultConfig }; |
| 149 | return handlerConfig.createConfigForResource(resource); |
| 150 | }; |
| 151 | |
| 152 | const dispose = async (id: string, opts: { transport?: boolean; server?: boolean } = {}) => { |
| 153 | const t = transports.get(id); |
no outgoing calls
no test coverage detected