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

@bubblydoo/photoshop-mcp

v0.0.4

Published

MCP server for Photoshop automation via Chrome DevTools Protocol

Readme

@bubblydoo/photoshop-mcp

MCP (Model Context Protocol) server for Photoshop automation via Chrome DevTools Protocol.

This allows AI assistants to execute JavaScript code directly in Adobe Photoshop's UXP environment.

How it works

  1. The MCP server connects to Photoshop via the Chrome DevTools Protocol (CDP)
  2. User code is bundled with esbuild (ESM → CJS) along with the @bubblydoo/uxp-toolkit runtime
  3. The bundled code is evaluated in Photoshop's UXP execution context
  4. Results are returned via CDP, with promise awaiting support

Installation

pnpm add @bubblydoo/photoshop-mcp

Usage

Start the server

# Using the CLI
pnpm photoshop-mcp

# Or with a custom port
PORT=3020 pnpm photoshop-mcp

# Or run directly
node dist/index.js

The server starts at http://localhost:3020/mcp by default.

Test with MCP Inspector

pnpx @modelcontextprotocol/inspector --transport http --server-url http://localhost:3020/mcp

Configure with Cursor

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "photoshop": {
      "url": "http://localhost:3020/mcp"
    }
  }
}

Available Tools

execute

Execute JavaScript code in Photoshop's UXP context.

Input:

  • name (string): Descriptive name for the operation (shown in UI)
  • code (string): ESM JavaScript code to execute

Features:

  • Code is bundled with esbuild before execution
  • @bubblydoo/uxp-toolkit and @bubblydoo/uxp-toolkit/commands are available as imports
  • Use export default to return values
  • Returned promises are automatically awaited
  • Top-level await is not supported (return a promise instead)

Example:

import { app } from '@bubblydoo/uxp-toolkit';

export default app.activeDocument?.name ?? 'No document open';

read-schema

Read the TypeScript type definitions for the toolkit packages.

Input:

  • package (enum): Either @bubblydoo/uxp-toolkit or @bubblydoo/uxp-toolkit/commands

read-docs

Read the documentation for the toolkit packages.

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | PORT | 3020 | HTTP server port | | PHOTOSHOP_MCP_PLUGIN_PATH | (internal fake-plugin) | Path to UXP plugin directory | | PHOTOSHOP_MCP_PLUGIN_ID | com.example.fakeplugin | Plugin ID from manifest.json |

Endpoints

  • POST /mcp - MCP protocol endpoint (Streamable HTTP transport)
  • GET /mcp - MCP protocol endpoint (for SSE connections)
  • GET /health - Health check (returns { "status": "ok" })

Requirements

  • Adobe Photoshop with UXP support
  • Photoshop must have Developer Mode enabled
  • The UXP Developer Tools must be accessible

Architecture

┌─────────────────┐     HTTP/MCP      ┌──────────────────┐
│   AI Assistant  │ ◄───────────────► │  photoshop-mcp   │
│  (Cursor, etc)  │                   │   (Hono server)  │
└─────────────────┘                   └────────┬─────────┘
                                               │ CDP
                                               ▼
                                      ┌──────────────────┐
                                      │    Photoshop     │
                                      │  (UXP Runtime)   │
                                      └──────────────────┘

Development

# Build
pnpm build

# Watch mode
pnpm dev

# Start server
pnpm start