@aiwerk/mcp-bridge 2.6.0 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/cli-auth.d.ts +2 -0
- package/dist/src/cli-auth.js +3 -1
- package/package.json +1 -1
package/dist/src/cli-auth.d.ts
CHANGED
package/dist/src/cli-auth.js
CHANGED
|
@@ -203,7 +203,9 @@ export async function performDeviceCodeLogin(serverName, config, logger) {
|
|
|
203
203
|
logger.info(`[mcp-bridge] ──────────────────────────────────────────`);
|
|
204
204
|
if (verificationUriComplete) {
|
|
205
205
|
logger.info(`[mcp-bridge] Or open this URL directly: ${verificationUriComplete}`);
|
|
206
|
-
|
|
206
|
+
if (!config.skipBrowser) {
|
|
207
|
+
openBrowser(verificationUriComplete, logger);
|
|
208
|
+
}
|
|
207
209
|
}
|
|
208
210
|
logger.info(`[mcp-bridge] Waiting for authorization (expires in ${expiresInS}s)...`);
|
|
209
211
|
// Step 3: Poll for token
|