Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Transports: stdio vs HTTP
  • State of MCP (stats)
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Screenshot Scout
Screenshot Scout logo
Health: ActiveRecent health check succeeded.Last checked 9/22/2026, 4:01:31 AM

Screenshot Scout

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Capture screenshots of webpages as images or PDFs with Screenshot Scout.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Not yet automatically verified

We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β€” we're steadily working through the catalog.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "screenshot-scout": {
      "command": "npx",
      "args": [
        "-y",
        "@screenshotscout/mcp"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

Screenshot Scout MCP Server

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.

What you need

  • A Screenshot Scout account and an access key from the API keys page.
  • Node.js 22 or newer for npm/stdio installation. Claude Desktop's MCPB runtime is bundled by Claude.
  • The optional secret key only when your selected API key requires signed Screenshot Scout requests.

Every capture uses your Screenshot Scout account and is subject to its plan, quota, and rate limits.

Local stdio with npm

Start with this local stdio configuration:

config.json
{
  "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:

json
"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.

Run from a source checkout

Terminal
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.

Claude Desktop MCPB

To install the Claude Desktop extension:

  1. Download screenshotscout-mcp-<version>.mcpb from that version's GitHub release.
  2. In Claude Desktop, open Settings β†’ Extensions β†’ Advanced settings and choose Install Extension….
  3. Select the downloaded file.
  4. Enter the required access key. Enter the secret key only for an API key that requires signed requests.

Claude Desktop treats both fields as sensitive settings. The v0.1.0 MCPB supports Windows.

Hosted Streamable HTTP

The hosted API-key endpoint is live at:

text
https://mcp.screenshotscout.com/mcp/api-key

It is intended only for clients that can attach a static HTTP header:

text
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.

Local stdio with Docker

Build the production image from a source checkout:

Terminal
docker build --tag screenshotscout-mcp:local .

Pass credentials from the local environment and keep stdin attached for MCP stdio traffic:

Terminal
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.

Tool: capture_screenshot

capture_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.

Inputs

Only url is required. Captures use a 1280Γ—720 viewport by default. When no format is specified, the tool returns JPEG at quality 60. resultMode defaults to "auto".

GroupInputs
Target and outputurl; format (png, jpg, jpeg, webp, gif, tiff, pdf); resultMode (auto, url_only)
Location and viewportcountry (two-letter country code), device, deviceViewportWidth, deviceViewportHeight, colorScheme (auto, dark, light), fullPage
Page preparationblockCookieBanners, blockAds, blockChatWidgets, selector, hideSelectors, clickSelectors
TimingwaitUntil (load, domcontentloaded, networkidle0, networkidle2), delay (0–30 seconds), navigationTimeout (5–90 seconds), timeout (1–240 seconds)
Cachecache, cacheTtl (14,400–2,592,000 seconds)
Output resizingimageWidth, imageHeight (1–8,192; available for images and PDFs)
Image onlyimageQuality (0–100, JPEG/WebP only)
PDF onlypdfPaperFormat (letter, legal, tabloid, a4, a3, content), pdfLandscape, pdfPrintBackground, pdfMargin, per-side margin fields, pdfScale (greater than 0 and at most 3)

When both output dimensions are provided, their product cannot exceed 64,000,000 pixels. PDF margins accept non-negative values in px, in, mm, or cm. imageQuality requires JPEG or WebP output, and PDF-only options require format: "pdf".

Results

  • PNG, JPEG, WebP, and GIF may be included as MCP image content when resultMode is auto, the MIME type is eligible, dimensions are known and at most 8,000 pixels per side, raw data is at most 5 MiB, and the complete serialized result fits the current 128,000-byte server limit.
  • A capture that is not eligible to embed remains successful and returns its temporary URL plus an actionable omission reason.
  • TIFF is URL-only.
  • PDF bytes are never embedded. A PDF result includes safe text and structured metadata, plus a resource link when Screenshot Scout provides a result URL.
  • resultMode: "url_only" omits image bytes for every format.

MCP clients control whether returned image content or resource links are displayed or made available to a model.

Structured metadata can include screenshotUrl, screenshotUrlExpiresAt, cacheStatus, format, mimeType, imageWidth, imageHeight, inlineImageIncluded, and inlineImageOmissionReason.

Treat result URLs as sensitive, temporary links and respect their reported expiry.

Example prompts

  • β€œCapture https://example.com as a full-page PNG in dark mode. Return only a URL.”
  • β€œTake a 1280Γ—720 JPEG screenshot of https://example.com/pricing, block cookie banners and ads, and use quality 80.”
  • β€œCreate an A4 PDF of https://example.com/report with backgrounds enabled and 10 mm margins.”

Privacy and security

The server sends the target URL and selected capture options to Screenshot Scout, which loads the target website. Review the Screenshot Scout privacy policy before capturing private or regulated material.

  • Do not capture pages you are not authorized to access.
  • Do not paste credentials into prompts, tool inputs, URLs, issue reports, or logs.
  • Keep local access and secret keys in client-managed secret storage or private environment configuration.
  • The local stdio server adds no telemetry. Application logging for the hosted service is limited to request method, response status, duration, and sanitized unexpected errors. It is designed not to include credentials, target URLs, screenshot URLs, request or response content, or image bytes.
  • Review each target and capture request before allowing tool use. The tool is open-world, consumes quota, and interacts with an external website.
  • Report vulnerabilities privately as described in SECURITY.md.

Development

Terminal
npm ci
npm run format:check
npm run lint
npm run typecheck
npm test
npm run metadata:check
npm run registry:validate
npm run mcpb:validate
npm run mcpb:pack

License

MIT Β© Oleksii Velykyi

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • Openapi MCP Server logoOpenapi MCP Server

    Connect any HTTP/REST API server using an Open API spec (v3)

    πŸ’» Developer Tools3 views
    Compare vs Openapi MCP Server β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools8 views
    Compare vs Claude Task Master β†’
  • MinerU Open MCP logoMinerU Open MCP

    Parse PDFs, images, doc, docx, ppt, pptx, xls, xlsx, html into Markdown using MinerU API.

    πŸ’» Developer Tools2 views
    Compare vs MinerU Open MCP β†’
  • MCP Server Docker logoMCP Server Docker

    Integrate with Docker to manage containers, images, volumes, and networks.

    πŸ’» Developer Tools3 views
    Compare vs MCP Server Docker β†’

Adoption & maintenance

Factual signals from GitHub, npm, and our automated checks β€” not a rating.

npm downloads
203
Package downloads in the last 30 days.
Last commit
1mo ago
Most recent push to the default branch.

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Screenshot Scout

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "screenshot-scout": { "command": "npx", "args": ["-y","@screenshotscout/mcp"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewScreenshot Scout AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/screenshot-scout?style=directory)](https://allmcps.com/mcp/screenshot-scout)
HTML Embed
<a href="https://allmcps.com/mcp/screenshot-scout"><img src="https://allmcps.com/api/badge/screenshot-scout?style=directory" alt="Screenshot Scout on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Last updatedAug 3, 2026
11/12 checks healthy over the last 45d
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
Last commit1mo ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Aug 3, 2026
npm downloads203/mo
Monthly npm DownloadsAverage monthly package installs recorded from npm registry statistics.
40Quality signal: Fair Β· 40/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools15/30
Adoption & activity5/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

Supply-chain signal

No high-severity advisories surfaced by our automated scan.

Critical 0High 0Medium 0Low 0

Scanned 2d ago via OSV.dev Β· @screenshotscout/mcp (npm)

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Screenshot Scout β†’Install in Claude DesktopInstall in CursorInstall in VS CodeSetup guides for all 13 MCP clients