MCP server intelligence profile

Webpage Screenshot MCP Server

Captures screenshots of web pages using Puppeteer, allowing AI agents to visually verify web applications and see their progress when generating web apps

Local Onlyananddtyagi
Awaiting current scanSource Git · cad4a14af1b0c5bf883eeac253b49e3590534ba1

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
5Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

No verified installation or connection method is available in the retained evidence yet.

Identity

Canonical slugwebpage-screenshot-mcp-server-ff35ee66DeploymentLocal Only
Canonical packageRepositoryananddtyagi/webpage-screenshot-mcp
First publishedLatest release
Last security verificationClassification confidence35%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
source_gitananddtyagi/webpage-screenshot-mcpcad4a14af1b0c5bf883eeac253b49e3590534ba11Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
source_gitananddtyagi/webpage-screenshot-mcpcad4a14af1b0c5bf883eeac253b49e3590534ba1CurrentAug 25, 20265 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-03-26Negotiated protocol
screenshot-pageServer-reported name
1Capability groups
Aug 25, 2026Observed

Tools 5

ToolCategoryAnnotationsRisk
clear-auth-cookiesClears saved authentication cookies for a specific domain or all domains
Input schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL of the domain to clear cookies for. If not provided, clears all cookies."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
login-and-waitOpens a webpage in a visible browser window for manual login, waits for user to complete login, then saves cookies
Input schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The URL of the login page"
    },
    "waitMinutes": {
      "type": "number",
      "default": 3,
      "description": "Maximum minutes to wait for login (default: 3)"
    },
    "successIndicator": {
      "type": "string",
      "description": "Optional CSS selector or URL pattern that indicates successful login"
    },
    "useDefaultBrowser": {
      "type": "boolean",
      "default": true,
      "description": "Whether to use the system's default browser instead of Puppeteer's bundled Chromium"
    }
  },
  "required": [
    "url"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
screenshot-elementCaptures a screenshot of a specific element on a webpage using a CSS selector
Input schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The URL of the webpage"
    },
    "selector": {
      "type": "string",
      "description": "CSS selector for the element to screenshot"
    },
    "waitForSelector": {
      "type": "boolean",
      "default": true,
      "description": "Whether to wait for the selector to appear"
    },
    "format": {
      "type": "string",
      "enum": [
        "png",
        "jpeg",
        "webp"
      ],
      "default": "png",
      "description": "Image format for the screenshot"
    },
    "quality": {
      "type": "number",
      "minimum": 0,
      "maximum": 100,
      "description": "Quality of the image (0-100), only applicable for jpeg and webp"
    },
    "padding": {
      "type": "number",
      "default": 0,
      "description": "Padding around the element in pixels"
    },
    "useSavedAuth": {
      "type": "boolean",
      "default": true,
      "description": "Whether to use saved cookies from previous login"
    },
    "useDefaultBrowser": {
      "type": "boolean",
      "default": false,
      "description": "Whether to use the system's default browser instead of Puppeteer's bundled Chromium"
    },
    "visibleBrowser": {
      "type": "boolean",
      "default": false,
      "description": "Whether to show the browser window (non-headless mode)"
    }
  },
  "required": [
    "url",
    "selector"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
screenshot-pageCaptures a screenshot of a given URL and returns it as base64 encoded image. Can use saved cookies from login-and-wait.
Input schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The URL of the webpage to screenshot"
    },
    "fullPage": {
      "type": "boolean",
      "default": true,
      "description": "Whether to capture the full page or just the viewport"
    },
    "width": {
      "type": "number",
      "default": 1920,
      "description": "Viewport width in pixels"
    },
    "height": {
      "type": "number",
      "default": 1080,
      "description": "Viewport height in pixels"
    },
    "format": {
      "type": "string",
      "enum": [
        "png",
        "jpeg",
        "webp"
      ],
      "default": "png",
      "description": "Image format for the screenshot"
    },
    "quality": {
      "type": "number",
      "minimum": 0,
      "maximum": 100,
      "description": "Quality of the image (0-100), only applicable for jpeg and webp"
    },
    "waitFor": {
      "type": "string",
      "enum": [
        "load",
        "domcontentloaded",
        "networkidle0",
        "networkidle2"
      ],
      "default": "networkidle2",
      "description": "When to consider the page loaded"
    },
    "delay": {
      "type": "number",
      "default": 0,
      "description": "Additional delay in milliseconds to wait after page load"
    },
    "useSavedAuth": {
      "type": "boolean",
      "default": true,
      "description": "Whether to use saved cookies from previous login"
    },
    "reuseAuthPage": {
      "type": "boolean",
      "default": false,
      "description": "Whether to use the existing authenticated page instead of creating a new one"
    },
    "useDefaultBrowser": {
      "type": "boolean",
      "default": false,
      "description": "Whether to use the system's default browser instead of Puppeteer's bundled Chromium"
    },
    "visibleBrowser": {
      "type": "boolean",
      "default": false,
      "description": "Whether to show the browser window (non-headless mode)"
    }
  },
  "required": [
    "url"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
signal-login-completeSignals that manual login is complete and the login-and-wait tool should continue
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Webpage Screenshot MCP Server questions

How do I install Webpage Screenshot MCP Server?

No verified package installation command is available in the retained catalog evidence.

What tools does Webpage Screenshot MCP Server provide?

Webpage Screenshot MCP Server exposed 5 tools during independent protocol observation, including clear-auth-cookies, login-and-wait, screenshot-element, screenshot-page, signal-login-complete.

Is Webpage Screenshot MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Browser Automation MCP ServersOfficial vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.