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

@cynosure-mcp/computer-controller

v1.0.2

Published

MCP server for desktop automation: launch apps, capture screenshots, control mouse and keyboard

Readme

@cynosure-mcp/computer-controller

MCP server for desktop automation — launch apps, capture screenshots, control mouse and keyboard. Supports multi-monitor setups and Gemini-optimized screenshot scaling.

Installation

npx @cynosure-mcp/computer-controller

Or install globally:

npm install -g @cynosure-mcp/computer-controller
computer-controller

Tools

| Tool | Description | | ----------------------- | --------------------------------------------- | | list_applications | Index and search installed applications | | launch_application | Launch an application by name | | get_screenshot | Capture the desktop (multi-monitor support) | | get_cursor_area | 512×512 screenshot centered on the cursor | | move_mouse | Move cursor to a position | | click_mouse | Click at current or specified position | | double_click | Double-click at current or specified position | | drag_mouse | Click-and-drag between positions | | scroll_mouse | Scroll the mouse wheel | | get_mouse_position | Get current cursor location | | type_text | Insert text at cursor | | press_key_combination | Press key combo (e.g., ctrl+c) | | get_screen_size | Get display dimensions | | get_system_details | OS, CPU, memory, and disk info | | wait | Pause for 1–10 seconds |

Configuration

| Variable | Required | Description | | --------------- | -------- | ------------------------------------------------------------------------------------------------------ | | DISPLAY_INDEX | No | Restrict to a specific monitor. 0 or unset = all displays; 1 = primary; 2 = second display; etc. | | GEMINI_MODE | No | Set to true to scale screenshots to fit within 1000×1000 for Gemini models |

Screenshot Scaling

Screenshots are automatically scaled to fit within model-friendly dimensions. In standard mode (optimized for Claude Sonnet) the output is downscaled to one of 1024×768, 1280×800, or 1280×720 depending on screen aspect ratio.

When GEMINI_MODE is enabled, all screenshots are scaled to fit within a 1000×1000 bounding box (maintaining aspect ratio) and bottom-padded with black to exactly 1000×1000. Content always starts at coordinate (0, 0).

| Resolution | Scale Factor | Content Area | Bottom Padding | | ---------- | ------------ | ------------ | -------------- | | 1920×1080 | 0.5208 | 1000×563 | 437px | | 2560×1440 | 0.3906 | 1000×563 | 437px | | 3840×2160 | 0.2604 | 1000×563 | 437px | | 1920×1200 | 0.5208 | 1000×625 | 375px |

MCP Config

{
  "mcpServers": {
    "computer-controller": {
      "command": "npx",
      "args": ["@cynosure-mcp/computer-controller"],
      "env": {
        "GEMINI_MODE": "true"
      }
    }
  }
}

License

MIT