Capture screenshots of webpages as images or PDFs with Screenshot Scout.
MCPpedia last refreshed this data
com.screenshotscout/mcp is an MCP server that capture screenshots of webpages as images or PDFs with Screenshot Scout. Its tool list has not been published yet over http and stdio, requires no API key, and scores 85/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"screenshotscout": {
"env": {
"SCREENSHOTSCOUT_ACCESS_KEY": "YOUR_ACCESS_KEY"
},
"args": [
"-y",
"@screenshotscout/mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Use Screenshot Scout from an MCP client to capture HTTP or HTTPS webpages as images or PDFs.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@screenshotscout/mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @screenshotscout/mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in browser
Chrome DevTools for coding agents
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
MCP server paired with a browser extension that enables AI agents to control the user's browser.
MCP Security Weekly
Get CVE alerts and security updates for com.screenshotscout/mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Use Screenshot Scout from an MCP client to capture HTTP or HTTPS webpages as images or PDFs.
This server exposes one tool, capture_screenshot. It supports full-page and
element captures, device and viewport controls, location selection, page
interaction and blocking options, image sizing and quality, PDF layout, caching,
temporary result URLs and eligible MCP image content.
Every capture uses your Screenshot Scout account and is subject to its plan, quota, and rate limits.
Start with this local stdio configuration:
{
"mcpServers": {
"screenshotscout": {
"command": "npx",
"args": ["-y", "@screenshotscout/mcp"],
"env": {
"SCREENSHOTSCOUT_ACCESS_KEY": "YOUR_ACCESS_KEY"
}
}
}
}
If the access key requires request signing, add the secret locally:
"SCREENSHOTSCOUT_SECRET_KEY": "YOUR_SECRET_KEY"
Keep personal configuration files out of source control. Credentials are process environment values, not tool arguments. See client-specific copy-paste configurations for Claude Desktop, Claude Code, Cursor, VS Code/GitHub Copilot, Devin, and Cline.
npm ci
npm run build
Point the client at the absolute path to dist/stdio.js with node, and provide
the same environment variables shown above.
To install the Claude Desktop extension:
screenshotscout-mcp-<version>.mcpb from that version's GitHub
release.Claude Desktop treats both fields as sensitive settings. The v0.1.0 MCPB
supports Windows.
The hosted API-key endpoint is live at:
https://mcp.screenshotscout.com/mcp/api-key
It is intended only for clients that can attach a static HTTP header:
Authorization: Bearer YOUR_ACCESS_KEY
The endpoint accepts an access key only. Never send a Screenshot Scout secret key to it, and never put either key in the URL or a tool argument. Clients that cannot attach a static Bearer header cannot use this endpoint.
API keys that require request signatures must instead use local stdio or MCPB, or use a dedicated unsigned access key for the hosted endpoint.
Build the production image from a source checkout:
docker build --tag screenshotscout-mcp:local .
Pass credentials from the local environment and keep stdin attached for MCP stdio traffic:
docker run --rm -i --init --cap-drop=ALL --security-opt=no-new-privileges --read-only \
-e SCREENSHOTSCOUT_ACCESS_KEY \
-e SCREENSHOTSCOUT_SECRET_KEY \
screenshotscout-mcp:local
SCREENSHOTSCOUT_SECRET_KEY remains optional. The image runs as an unprivileged
user and contains only the compiled stdio server and its production dependencies.
It declares no port or container health check: an MCP client owns the stdio
process and verifies readiness by completing MCP initialization. The image and
its Docker MCP Catalog metadata in docker-mcp-catalog.yaml are local
preparation; no public image is implied by these commands.
capture_screenshotcapture_screenshot sends one capture request for the supplied URL and options.
The target webpage is external, and its returned content must be treated as
untrusted.