Original Reddit post

Everything at work is behind SSO. Every time I ask Claude Code to check a ticket or search the wiki — it can’t. No session. Tried MCP servers. Too heavy, each service needs its own process, still have to solve auth yourself. Pasting cookies to env vars works but expires in hours. Playwright is slow and burns tokens. Built a CLI instead. Opens a real browser, you log in normally (SSO, MFA, whatever), it grabs cookies, encrypts locally. Agent calls a wrapper that injects creds as env vars during execution, gone after. Each action is a Python script + a SKILL.md. Claude reads the doc, knows what to call. No daemon. What I use it for daily: “which of my Jira tickets are blocked” — pulls my issues, reads comments, flags blockers “find the architecture doc for X on Confluence” — searches wiki, reads it, answers questions “tell team channel standup moved to 3pm” — drafts, I confirm, sent “what did Slack say about the migration last week” — cross-channel search, summary “any urgent Outlook emails” — scans inbox, flags priority Each one is just auth + one API call + JSON back. Without auth Claude can’t do any of them. Two months in, stable. Covers Jira, Confluence, Outlook, Slack, Teams. If you’re hitting the same SSO wall happy to share. submitted by /u/Syncher_Pylon

Originally posted by u/Syncher_Pylon on r/ClaudeCode