Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions linkedin_mcp_server/cli_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,10 @@ def main() -> None:

logger.debug(f"Server configuration: {config}")

# Phase 1: Ensure Authentication is Ready
# Phase 1: Ensure Authentication is Ready (skip for OAuth — no cookie profile needed)
try:
ensure_authentication_ready()
if not (config.server.oauth and config.server.oauth.enabled):
ensure_authentication_ready()
if config.is_interactive:
print("✅ Authentication ready")
logger.info("Authentication ready")
Expand Down
Loading