Examples
Step-by-step walkthroughs for common workflows. Each example shows the exact tool calls and explains what happens at each step.
Dev Loop: Screenshot localhost and iterate
The most common workflow: open your local dev server in a browser, take a screenshot so your coding agent can see the result, make changes, and verify visually.
The agent drives the entire loop: open, look, edit, look again, close. No manual browser interaction needed.
Morning Brief: Pull metrics from 3 dashboards
Navigate to multiple dashboards, extract key metrics, and store them in the KV store for later use (e.g., by another agent generating a daily report).
The KV store persists across sessions. A separate agent (or a cron job) can later read these values with kv_get to compile the brief.
Competitive Intel: Monitor a competitor's pricing
Use stealth mode to browse a competitor's site without triggering bot detection. Save a screenshot and extracted content for later analysis.
Stealth mode applies anti-fingerprinting patches to Chrome, making automated browsing harder to detect.
Multi-Agent Coordination via KV Store
Two agents working on different tasks can share data through the KV store. Agent A gathers research; Agent B consumes it to produce a report.
This pattern requires daemon mode so both agents share the same KV store. Without the daemon, each MCP server instance has its own isolated database.
Record a Session for Debugging
Record every action during a bug reproduction, add markers at key moments, and render the recording to video for sharing with your team.
The rendered video includes timestamped markers as overlays, making it easy to jump to the exact moment something went wrong. Share the video file with your team or attach it to a bug report.
Next: Tools Reference → · Daemon Mode →