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

stitch-mcp-stdio

v1.0.0

Published

Stable stdio MCP server for Google Stitch AI UI design tool. Drop-in replacement for @_davideast/stitch-mcp that doesn't crash.

Readme

stitch-mcp-stdio

Stable stdio MCP server for Google Stitch AI UI design tool.

Drop-in replacement for @_davideast/stitch-mcp that eliminates the proxy layer crash (libuv UV_HANDLE_CLOSING assertion failure on Windows and intermittent connection drops on other platforms).

Why this exists

The official @_davideast/stitch-mcp package runs a proxy subprocess that suffers from a libuv bug causing random crashes, especially on Windows. This package uses the same @google/stitch-sdk under the hood but connects via stdio transport directly -- no proxy process, no crash.

Setup

1. Get a Stitch API key

Go to stitch.withgoogle.com -> Profile -> Settings -> API Key.

2. Configure your MCP client

Point any MCP-compatible client (Claude Code, Claude Desktop, Cursor, Gemini CLI, VS Code) at npx stitch-mcp-stdio:

{
  "mcpServers": {
    "stitch": {
      "command": "npx",
      "args": ["-y", "stitch-mcp-stdio"],
      "env": {
        "STITCH_API_KEY": "your-api-key"
      }
    }
  }
}

npx -y downloads + runs the latest version without a permanent install. To pin a version use [email protected].

Alternative: local clone (if you'd rather not use npx)

git clone https://github.com/bluedevilcollectibles/stitch-mcp-stdio.git
cd stitch-mcp-stdio
npm install

Then point the client at node /path/to/stitch-mcp-stdio/server.js instead of npx.

Available tools

All 12 tools from the Stitch SDK are exposed:

| Tool | Description | |------|-------------| | create_project | Create a new Stitch project | | get_project | Get project details | | list_projects | List all projects | | list_screens | List screens in a project | | get_screen | Get screen details | | generate_screen_from_text | Generate a screen from a text prompt | | edit_screens | Edit an existing screen | | generate_variants | Generate design variants | | create_design_system | Create a design system | | update_design_system | Update a design system | | list_design_systems | List design systems | | apply_design_system | Apply a design system to screens |

How it works

MCP Client (Claude, Cursor, etc.)
    |
    | stdio (stdin/stdout)
    |
stitch-mcp-stdio (this package)
    |
    | HTTPS (API key auth)
    |
stitch.googleapis.com/mcp

No proxy subprocess. No libuv handle management. Just stdio in, API calls out.

Built by

Blue Devil Collectibles -- makers of LiveSeller Pro, inventory and live selling tools for comic shops, card shops, and collectibles dealers.

We built this MCP server to power our AI design pipeline. If you sell on WhatNot, manage pull lists, or run a brick-and-mortar shop, check out what we're building.

License

MIT