#what are the recommended web browsing skills/mcp

4 messages · Page 1 of 1 (latest)

lavish canyon
#

im looking for a web browsing cli/skill/mcp that can re use my existing logged in sessions.

fierce badgeBOT
#

Just checking the docs so I don’t make up a bad recommendation.

#

Yeah, the best fit is OpenClaw’s built-in browser with an existing-session profile, not web_fetch.

If you want to reuse your real logged-in browser session:

openclaw browser --browser-profile user start
openclaw browser --browser-profile user tabs
openclaw browser --browser-profile user snapshot --format ai

user attaches to your real signed-in Chrome session via Chrome DevTools MCP and reuses your open tabs/cookies/login state.

If you use Brave/Edge/non-default Chromium profile, make a custom profile like:

{
#
  browser: {
    profiles: {
      brave: {
        driver: "existing-session",
        attachOnly: true,
        userDataDir: "~/Library/Application Support/BraveSoftware/Brave-Browser"
      }
    }
  }
}

Then use --browser-profile brave.

A few gotchas:

  • best when OpenClaw runs on the same machine as the browser