Build a web browsing agent
Build an AI agent that can autonomously control a browser with Stagehand
Stagehand agents are brand new in Stagehand 2.0.
Stagehand gives AI agents powerful tools to control a browser completely autonomously. Watch below as a Stagehand agent autonomously navigates to a URL, takes actions on the page, and extracts structured data to answer a question. There’s quite a few ways to build an agent with Stagehand. Let’s look at a few of them.
Stagehand MCP
The above example is a Claude agent that uses Stagehand to control a browser. At this time of writing, multimodal tool calling is only supported in Claude 3.5/3.7 Sonnet. This means Claude is intelligent enough to know when to request a browser screenshot, and it can then use that screenshot to make decisions about what actions to take next.
What’s really interesting about this is that the agent is able to reason about the browser state and take actions separate from one another! Claude is able to reason about the browser state, while Stagehand is able to take actions on the page with GPT-4o-mini or a computer use model. Stagehand is even smart enough to know when to use GPT-4o-mini and when to use a computer use model, i.e. on iframe detection.
We’ve found great success from having Claude as the “Trajectory” agent calling Stagehand tools when it sees fit! While MCP is really nascent, we’re excited to see where it goes.
Stagehand + Computer Use Models
Stagehand lets you leverage powerful computer use APIs from OpenAI and Anthropic with just one line of code.
Stagehand + Computer Use Docs
Check out our docs page for instructions on how to use computer use models with Stagehand.
CUA Browser Demo
Check out a live demo of a Browserbase browser controlled by OpenAI’s Computer Using Agent (CUA) model.
Sequential Tool Calling (Open Operator)
In January 2025, Browserbase released Open Operator. Open Operator is able to reason about the browser state and take actions accordingly to accomplish larger tasks like “order me a pizza”. It works by calling Stagehand tools in sequence:
- If there’s no URL, go to a default URL.
- Examine the browser state. Ask an LLM to reason about what to do next.
- Use
page.act()
to execute the LLM-suggested action. - Repeat
Incorporating Open Operator into your browser automation is as easy as adding a single line of code:
Replay the agent’s actions
You can replay the agent’s actions exactly the same way you would with a regular Stagehand agent. You can even automatically cache the actions to avoid unnecessary LLM calls on a repeated run.
Let’s use the replay
function below to save the actions to a Stagehand script file, which will reproduce the same actions the agent did, with cached actions built in.
Here’s the replay output of an instruction like "Get me the stock price of NVDA"
: