# screenshotsmcp

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add relievedattention992-smithery/screenshotsmcp

# Browse available tools
npx -y @smithery/cli@latest tool list relievedattention992-smithery/screenshotsmcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get relievedattention992-smithery/screenshotsmcp take_screenshot

# Call a tool
npx -y @smithery/cli@latest tool call relievedattention992-smithery/screenshotsmcp take_screenshot '{}'
```

## Direct MCP Connection

Endpoint: `https://screenshotsmcp--relievedattention992-smithery.run.tools`

**Optional config:**
- `apiKey` (query) — Your ScreenshotsMCP API key from https://screenshotsmcp.com/dashboard/keys

## Tools (56)

- `take_screenshot` — Capture a screenshot of any URL and return a public image URL. By default captures the full scrollable page. Set fullPa…
- `screenshot_tablet` — Capture a screenshot at iPad viewport (820×1180). By default captures viewport-only (not the full scrollable page). Set…
- `screenshot_responsive` — Capture screenshots at desktop (1280×800), tablet (820×1180), and mobile (393×852) viewports in one call. By default ca…
- `screenshot_fullpage` — Capture a full-page screenshot (entire scrollable content) of any URL. Use max_height to cap extremely long pages and p…
- `screenshot_dark` — Capture a full-page screenshot with dark mode (prefers-color-scheme: dark) emulated. Works on sites that support dark m…
- `screenshot_element` — Capture a screenshot of a specific element on the page by CSS selector. Only the matched element is captured, not the f…
- `screenshot_pdf` — Export a webpage as a PDF document (A4 format with background graphics). Returns a public URL to the PDF file.
- `list_recent_screenshots` — List the most recent screenshots taken with this API key. Returns URLs and metadata.
- `get_screenshot_status` — Check the status of a screenshot job by ID. Returns done/pending/failed and the public URL if ready.
- `browser_navigate` — Open a browser and navigate to a URL. Returns a screenshot of the loaded page. Use this to start a browser session — th…
- `browser_click` — Click an element on the current browser page by CSS selector or visible text. Returns a screenshot after clicking.
- `browser_click_at` — Click at specific x,y coordinates on the current browser page. Use this when elements cannot be targeted by CSS selecto…
- `browser_fill` — Type text into an input field on the current browser page. Clears the field first, then types the value.
- `browser_screenshot` — Take a screenshot of the current browser page without performing any action.
- `browser_scroll` — Scroll the browser page by a given amount in pixels.
- `browser_wait_for` — Wait for an element to appear on the page, then return a screenshot. Useful after navigation or form submissions.
- `browser_evaluate` — Run JavaScript in the browser page and return the result as text. Useful for extracting data, checking values, or trigg…
- `browser_set_viewport` — Resize the browser viewport in an existing session. Useful for testing responsive layouts without starting a new sessio…
- `browser_close` — Close the browser session and free all resources. Always call this when the browser workflow is complete. If the sessio…
- `browser_get_accessibility_tree` — Get the accessibility tree of the current page. Returns a structured snapshot of all interactive elements, headings, li…
- `browser_get_text` — Extract all visible text from the current page. Useful for understanding page content without screenshots. Returns text…
- `browser_get_html` — Get the HTML of the current page or a specific element. Useful for inspecting DOM structure, class names, and attribute…
- `browser_hover` — Hover over an element on the page. Useful for triggering tooltips, dropdown menus, or hover states. Returns a screensho…
- `browser_select_option` — Select an option from a <select> dropdown element. Returns a screenshot after selection.
- `browser_go_back` — Navigate back in browser history (like clicking the Back button). Returns a screenshot of the previous page.
- `browser_go_forward` — Navigate forward in browser history. Returns a screenshot.
- `browser_console_logs` — Get captured console logs (errors, warnings, logs) and JavaScript exceptions from the current browser session. Essentia…
- `browser_network_errors` — Get failed network requests (4xx/5xx responses) captured during the browser session. Useful for identifying broken API …
- `browser_perf_metrics` — Get Core Web Vitals and performance metrics for the current page. Returns LCP, FCP, CLS, TTFB, DOM size, resource count…
- `browser_network_requests` — Get the full network request waterfall with timing data. Shows every request made by the page — URLs, methods, status c…
- `browser_seo_audit` — Extract SEO metadata from the current page: title, meta description, Open Graph tags, Twitter cards, canonical URL, hea…
- `browser_press_key` — Press a keyboard key or key combination. Supports special keys like Enter, Tab, Escape, ArrowDown, and modifiers like C…
- `browser_cookies` — Get or set cookies for the current browser session. Use 'get' to read all cookies (useful for debugging auth). Use 'set…
- `browser_storage` — Read or write localStorage and sessionStorage. Use for debugging client-side state, auth tokens, feature flags, and cac…
- `find_login_page` — Discover login/sign-in pages for a website. Checks the site's sitemap.xml and probes common login URL paths. Returns a …
- `smart_login` — Attempt to log in to a website. Navigates to the login URL, finds email/username and password fields, fills them in, an…
- `accessibility_snapshot` — Get the accessibility tree for any URL without needing a browser session. Returns a structured snapshot of all interact…
- `screenshot_diff` — Compare two URLs pixel-by-pixel and return a diff overlay image showing exactly what changed. Returns the diff image UR…
- `webhook_list` — List all outbound webhook endpoints registered for the current account. Use this to confirm which URLs will receive scr…
- `webhook_create` — Register a new outbound webhook endpoint. The signing secret is returned ONCE — store it before doing anything else. De…
- `webhook_test` — Fire a test.ping event to a webhook endpoint to verify reachability and signature handling. Returns once the delivery h…
- `webhook_rotate` — Rotate the signing secret for an endpoint. The new secret is returned once — update your verifier immediately to avoid …
- `webhook_deliveries` — List the most recent delivery attempts for a webhook endpoint, including HTTP status, attempt count, and any error mess…
- `webhook_delete` — Permanently delete a webhook endpoint and stop sending events to it. Existing in-flight deliveries are not retried.
- `screenshot_batch` — Capture screenshots of multiple URLs in one call (max 10). Returns an array of results with screenshot URLs and metadat…
- `screenshot_cross_browser` — Capture a URL in Chromium, Firefox, and WebKit simultaneously. Returns three screenshot URLs — one per browser engine. …
- `find_breakpoints` — Detect responsive layout breakpoints for a URL. Scans viewport widths from 320px to 1920px and identifies where signifi…
- `ux_review` — Run an AI-powered UX review on any URL. Captures a screenshot and analyzes it along with accessibility tree, SEO metada…
- `authorize_email_access` — One-time setup: Connect the user's Gmail account via OAuth so the AI can read verification emails automatically. Return…
- `read_verification_email` — Read the latest email verification code / OTP from the user's Gmail inbox. Use this after smart_login encounters a veri…
- `auth_test_assist` — Start here for website login, sign-up, and verification testing. This is the shared auth entrypoint for MCP and CLI wor…
- `create_test_inbox` — Standalone inbox helper for testing. Create or reuse the saved primary disposable email inbox, then use auth_test_assis…

---
*Response truncated. Use `npx -y @smithery/cli@latest` for complete data.*
