(event, key)
| 3897 | ...(isServerMode ? [] : [{ |
| 3898 | label: 'Browser Extension', |
| 3899 | click: () => mainWindow.webContents.send('open-browser-extension-settings') |
| 3900 | }]), |
| 3901 | { |
| 3902 | label: 'MCP Server', |
| 3903 | submenu: [ |
| 3904 | { |
| 3905 | label: 'Settings', |
| 3906 | click: () => { |
| 3907 | if (mainWindow && !mainWindow.isDestroyed()) { |
| 3908 | mainWindow.webContents.send('open-mcp-server-settings'); |
| 3909 | } |
| 3910 | } |
| 3911 | }, |
| 3912 | { |
nothing calls this directly
no outgoing calls
no test coverage detected