()
| 80 | private unsubscribePubSub?: () => void |
| 81 | |
| 82 | constructor() { |
| 83 | if (mcpPubSub) { |
| 84 | this.unsubscribePubSub = mcpPubSub.onToolsChanged((event) => { |
| 85 | this.notifyLocalListeners(event) |
| 86 | }) |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Subscribe to tools-changed events from any managed connection. |
nothing calls this directly
no test coverage detected