()
| 188 | } |
| 189 | |
| 190 | private removeDiscoveredTools(): void { |
| 191 | for (const tool of this.tools.values()) { |
| 192 | if (tool instanceof DiscoveredTool || tool instanceof DiscoveredMCPTool) { |
| 193 | this.tools.delete(tool.name); |
| 194 | } |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * Removes all tools from a specific MCP server. |
no outgoing calls
no test coverage detected