Documentation Index
Fetch the complete documentation index at: https://piyushvyas.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Slim Mode
Start the MCP server with--slim to expose only 5 essential tools instead of 23. This cuts tool definition tokens from approximately 4,200 to approximately 600 — a major context savings for AI agents.
Enable Slim Mode
The 5 Essential Tools
| Tool | Description |
|---|---|
navigate | Navigate to a URL (with fused observe support) |
observe | See interactive elements with stable refs |
act | Batch multiple interactions in one call |
extract | Extract structured data with JSON schema |
screenshot | Capture page screenshot |
What You Lose
With slim mode, these tools are not available:- Individual interaction tools:
click,fill,type,press,select,scroll,hover— useactto batch these instead - Advanced observation:
accessibility,aria_snapshot,content,element— useobservewithresponseTier - Page management:
pages,activate_page,close_page— single-tab workflows only - Navigation helpers:
go_back,go_forward,reload— navigate to URLs directly - Discovery:
discover_tools— no WebMCP discovery
In slim mode, use
act for all interactions. Instead of calling click directly, use:When to Use Slim Mode
Use Slim Mode
- Most browser automation tasks - When token budget is limited - Single-tab workflows - When
using
actfor batched interactions
Use Full Mode
- Multi-tab workflows requiring
pages/activate_page- When you needaria_snapshotfor cheap page structure - When you needcontentfor markdown extraction - When you needelementfor state queries - When using WebMCPdiscover_tools
Token Comparison
| Mode | Tools | Definition tokens |
|---|---|---|
| Full | 23 tools | ~4,200 tokens |
| Slim | 5 tools | ~600 tokens |
| Savings | ~85% |