npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@prosperity-solutions/mcp-server-screenshot

v1.0.0

Published

MCP server for native macOS screenshot capture — screen, window, and region capture via screencapture

Readme

@prosperity-solutions/mcp-server-screenshot

npm license

Native macOS screenshot capture for AI assistants.

An MCP server that provides screenshot capture on macOS using the native screencapture command. Works with any MCP-compatible client.

Features

  • list_windows — List all visible windows with app name, title, ID, and bounds
  • screenshot_window — Capture a specific window by ID or app name
  • screenshot_screen — Capture an entire display
  • screenshot_region — Capture a rectangular region by coordinates
  • request_screenshot — Interactive crosshair selector for user-driven capture

Prerequisites

  • macOS (uses the native screencapture command)
  • Node.js >= 24
  • Screen Recording permission — Grant permission to your terminal app in: System Settings → Privacy & Security → Screen Recording

Quick Start

Add to your MCP client configuration:

{
  "mcpServers": {
    "screenshot": {
      "command": "npx",
      "args": ["-y", "@prosperity-solutions/mcp-server-screenshot"]
    }
  }
}

Tools

| Tool | Description | Key Parameters | |------|-------------|----------------| | list_windows | List visible windows | app_name? — filter by app name | | screenshot_window | Capture a window | window_id?, app_name?, format? | | screenshot_screen | Capture a display | display? (default: 1), format? | | screenshot_region | Capture a region | x, y, width, height, format? | | request_screenshot | Interactive selector | format? |

All capture tools support format ("png" or "jpg", default "png").

Security & Privacy

Screenshot capture is a sensitive operation — it can expose passwords, private messages, financial data, or anything else visible on screen. This server is designed with a clear trust boundary: the user, not the agent, decides what gets shared.

By default, every screenshot request triggers a native macOS confirmation dialog (Allow / Deny) before any pixels are captured. This dialog is rendered by the operating system, completely outside the agent's context — the agent cannot see it, dismiss it, or influence the outcome. You always know exactly what is being captured before it happens.

If you operate in a trusted environment (e.g., a dedicated machine, a sandboxed workflow, or an automated pipeline where no sensitive content is on screen), you can disable confirmation by setting the SCREENSHOT_MCP_CONFIRM environment variable to 0. This is an environment-level setting, configured at server startup — it is intentionally not exposed as a tool, so an agent can never change it at runtime.

{
  "mcpServers": {
    "screenshot": {
      "command": "npx",
      "args": ["-y", "@prosperity-solutions/mcp-server-screenshot"],
      "env": {
        "SCREENSHOT_MCP_CONFIRM": "0"
      }
    }
  }
}

Development

git clone https://github.com/prosperity-solutions/mcp-server-screenshot.git
cd mcp-server-screenshot
npm install
npm run build
npm start

License

MIT