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

@mcpcn/mcp-screenshot

v1.0.1

Published

截图MCP服务器

Readme

截图MCP服务器

跨平台截图MCP服务器,支持macOS、Windows和Linux系统。

功能特性

  • 📸 全屏截图
  • 🪟 窗口截图
  • ✂️ 区域选择截图
  • 🖼️ 多种格式支持(PNG、JPG、PDF、TIFF)
  • 🖱️ 隐藏光标选项
  • 🌗 窗口阴影控制
  • ⏰ 时间戳命名
  • 🖥️ 跨平台支持(macOS、Windows、Linux)

工具

take_screenshot

截取屏幕截图

参数:

  • path (必需): 保存截图的文件路径
  • type (必需): 截图类型(fullscreen, window, selection)
  • format (可选): 图片格式(png, jpg, pdf, tiff),默认png
  • hideCursor (可选): 是否隐藏鼠标光标
  • shadow (可选): 是否包含窗口阴影(仅窗口截图)
  • timestamp (可选): 是否在文件名添加时间戳

安装和使用

# 安装依赖
pnpm install

# 构建
pnpm build

# 运行
pnpm start

平台支持

  • macOS: 使用系统内置的screencapture命令
  • Windows: 使用PowerShell的Graphics API
  • Linux: 优先使用gnome-screenshot,备选scrot、ImageMagick等

Linux依赖

Linux系统需要安装截图工具之一:

  • gnome-screenshot(GNOME桌面默认)
  • scrot
  • ImageMagick (import命令)
  • xwd

示例

全屏截图:

{
  "path": "/path/to/screenshot.png",
  "type": "fullscreen",
  "format": "png",
  "hideCursor": true,
  "timestamp": true
}

窗口截图:

{
  "path": "/path/to/window.jpg",
  "type": "window",
  "format": "jpg",
  "shadow": false
}

区域选择截图:

{
  "path": "/path/to/selection.png",
  "type": "selection"
}