MCP
ScreenshotOne provides a hosted MCP server that lets compatible AI agents connect to ScreenshotOne securely with OAuth. You do not need to run a local server or copy your ScreenshotOne API key into the MCP client.
Available MCP tools
Section titled “Available MCP tools”render-website-screenshot
Section titled “render-website-screenshot”Renders a website screenshot and returns a compact temporary URL instead of embedding the image in the MCP response.
The tool accepts the following options:
url: The HTTP or HTTPS URL to capture.block_banners: Blocks cookie, GDPR, and similar banners and popups. The default istrue.block_ads: Blocks advertisements. The default istrue.image_quality: Sets the image quality from1to100. The default is80.full_page: Captures the entire page instead of only the visible viewport. The default isfalse.full_page_slices: Splits a full-page screenshot into smaller vertical images. The default isfalseand it requiresfull_page=true.metadata_content: Extracts page content with the screenshot and returns it through a temporary URL. The default isfalse.metadata_content_format: Chooseshtmlormarkdownformetadata_content. It requiresmetadata_content=true; the ScreenshotOne API default ishtml.
These option names and values match the ScreenshotOne API options. ScreenshotOne API response-type and cache controls are not exposed as MCP tool options. The server always requests a JSON response with API caching disabled.
For a screenshot and Markdown content in the same render, use:
{ "url": "https://example.com", "metadata_content": true, "metadata_content_format": "markdown"}The returned content object contains the temporary Markdown URL and its expiration time. The Markdown is not embedded in the screenshot tool response.
For a long page that an AI agent needs to analyze visually, prefer full_page_slices=true together with full_page=true. Smaller slices are more reliable for agent vision than one unusually tall image.
A call using both features returns:
{ "url": "https://cache.screenshotone.com/screenshot.jpg", "content": { "url": "https://cache.screenshotone.com/content.md", "expires": "Sun, 07 Sep 2026 12:00:00 GMT", "format": "markdown" }, "slices": [ { "index": 0, "offset_y": 0, "width": 1280, "height": 4000, "url": "https://cache.screenshotone.com/slice-0.jpg" } ]}The screenshot URL is temporary and is available for up to four hours. Content and slice URLs are also temporary. Download any artifact you need to keep.
extract-website-markdown
Section titled “extract-website-markdown”Renders a public website and returns its cleaned Markdown directly as MCP text. Use this tool when the agent needs to read, summarize, or extract information from a page without receiving a screenshot.
The tool accepts only one option:
url: The HTTP or HTTPS URL to extract.
It is a focused shortcut for the ScreenshotOne API’s format=markdown response. No other screenshot or Markdown options are exposed.
get-usage
Section titled “get-usage”Returns the ScreenshotOne API quota and concurrency usage for the connected organization. This is useful before an agent starts a larger batch of captures.
See the ScreenshotOne MCP integration page for the hosted server URL, local server option, and related resources.
Connect to ScreenshotOne MCP
Section titled “Connect to ScreenshotOne MCP”-
Open the MCP settings in your AI agent or MCP client.
-
Add the following URL as a remote MCP server:
https://mcp.screenshotone.com -
Sign in to ScreenshotOne in the browser and approve the connection.
-
Return to your agent and start using ScreenshotOne.
Manage MCP connections
Section titled “Manage MCP connections”Open the ScreenshotOne Dashboard, go to Integrations, and select Connect MCP clients.
The MCP connections page lists the clients connected to your organization. You can review each connection, rotate its API key, or revoke its access.