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
These 5 tools cover 95%+ of browser automation tasks.
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