setup

Install Oh My Browser

Oh My Browser Lite (Chrome Web Store)

Zero-config, one-click install from the Chrome Web Store. The fastest way to get started.

Install from Chrome Web Store
  • Best for first-time users — install in under a minute
  • Auto-updates automatically via Chrome Web Store
  • Subject to Web Store sandbox limits — some advanced capabilities require Oh My Browser

Oh My Browser

Install via curl for the complete feature set. Unlocks advanced capabilities Chrome reserves for unpacked extensions.

$ curl -sSL https://api.omb.org.cn/install.sh | bash
  • Full capabilities: background tab focus, trusted gestures, and full network responses
  • Manual update via re-running the install script
  • Recommended for agent developers and power users

Configure your MCP client

Connect Oh My Browser to your AI agent in one step. Choose your MCP client below.

Claude Code

claude mcp add oh-my-browser -- omb mcp serve

Cursor

// ~/.cursor/mcp.json
{
  "mcpServers": {
    "oh-my-browser": {
      "command": "omb",
      "args": ["mcp", "serve"]
    }
  }
}

Codex

// ~/.codex/config.json — add to "mcpServers"
{
  "oh-my-browser": {
    "command": "omb",
    "args": ["mcp", "serve"]
  }
}

Windsurf

// ~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "oh-my-browser": {
      "command": "omb",
      "args": ["mcp", "serve"]
    }
  }
}

Claude Desktop

// ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "oh-my-browser": {
      "command": "omb",
      "args": ["mcp", "serve"]
    }
  }
}

Trae

// Trae MCP settings → add server
{
  "oh-my-browser": {
    "command": "omb",
    "args": ["mcp", "serve"]
  }
}