Capture screenshots from browser automation
Capture full-page screenshots of websites using browser automation. Use this to document web pages, verify layouts, or capture visual evidence when debugging web applications.
/plugin marketplace add tstomtimes/orchestra/plugin install orchestra@orchestra-marketplaceCapture a screenshot of a web page using the Browser MCP server.
Navigate to a specified URL and take a full-page screenshot, saving it to the artifacts directory.
Ask the user for the URL if not provided in the command arguments
Check if Browser MCP server is running:
curl -s http://localhost:3030/health
If not running, tell the user to run /browser first
Generate a unique filename based on the URL (e.g., example-com-{timestamp}.png)
Execute the screenshot workflow:
cd orchestra/mcp-servers
# Initialize browser
./browser-helper.sh init
# Navigate to URL
./browser-helper.sh navigate {URL}
# Wait for page load
sleep 2
# Take full-page screenshot
./browser-helper.sh screenshot {filename}.png true
# Close browser
./browser-helper.sh close
Show the screenshot path to the user and offer to open it
User: /screenshot https://example.com
Assistant: Taking screenshot of https://example.com...
✅ Screenshot saved to: artifacts/browser/{sessionId}/example-com-1234567890.png
/browser to start)