We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 12267da + 0b41f54 commit 0747c06Copy full SHA for 0747c06
1 file changed
linkedin_mcp_server/cli_main.py
@@ -339,9 +339,10 @@ def main() -> None:
339
340
logger.debug(f"Server configuration: {config}")
341
342
- # Phase 1: Ensure Authentication is Ready
+ # Phase 1: Ensure Authentication is Ready (skip for OAuth — no cookie profile needed)
343
try:
344
- ensure_authentication_ready()
+ if not (config.server.oauth and config.server.oauth.enabled):
345
+ ensure_authentication_ready()
346
if config.is_interactive:
347
print("✅ Authentication ready")
348
logger.info("Authentication ready")
0 commit comments