npx claudepluginhub 3li7alaki/mint --plugin mint/browseLaunches headless browser via Playwright to navigate URL, click elements, fill forms, take screenshots. Outputs screenshot path, page title, and URL for visual verification and e2e testing.
/browseLists and explores items on a Miro board from a URL, optionally filtered by item type like frame or sticky_note. Groups by type, shows IDs and content, offers more details or pagination.
/browseNavigates to a specified URL in a browser and enables DevTools MCP interactions like screenshots, content extraction, clicking elements, form filling, accessibility checks, and network monitoring.
/browseBrowses recent messages, active contacts, conversations, messages from specific senders, or full threads using the messages CLI tool. Installs the Node.js CLI globally if missing.
/browseSearch and discover cowork items from the seed catalog of 17 items backed by 16 installed plugins
/browseBrowse past sessions, projects, and their events in the RAG database
Navigate to a URL and perform browser automation tasks.
/browse <url> [task description]
| Argument | Required | Description |
|---|---|---|
url | Yes | URL to navigate to |
task description | No | What to do on the page (e.g., "fill in the form", "check if the button renders") |
# Navigate and explore
/browse https://myapp.com/login
# Navigate and perform a task
/browse https://myapp.com/login "fill in the form and submit"
# Check local dev server
/browse localhost:3000 "check if the new button renders"
# Scrape information
/browse https://docs.example.com "find the API endpoint for user creation"
Parse arguments:
Normalize URL:
http://:3000), prepend http://localhostLoad browser config from .mint/config.json:
browser key missing: suggest running mint initbrowser.enabled is false: inform user browser features are disabledInvoke browser-runner agent with:
Return result from browser-runner agent
Error: URL is required.
Usage: /browse <url> [task description]
Examples:
/browse https://myapp.com/login
/browse localhost:3000 "check the new button"
Error: Browser plugin not configured.
Add browser config to .mint/config.json:
{
"browser": {
"enabled": true,
"baseUrl": "http://localhost:9867"
}
}
Or run: mint init (to auto-configure)
Warning: PinchTab not running at http://localhost:9867
Start PinchTab:
pinchtab &
Or install:
curl -fsSL https://pinchtab.com/install.sh | sh
http:// prepended automaticallybrowser.token from config for authenticated PinchTab instances