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

@adobe/express-add-on-dev-mcp

v0.1.0

Published

MCP server for Adobe Express Add-on development

Downloads

266

Readme

Adobe Express Add-on Developer MCP Server (Beta)

Get Adobe Express Add-on documentation and TypeScript definitions directly in your AI-assisted IDE through the Model Context Protocol (MCP). Build faster with grounded answers and accurate code suggestions.

Status: Beta - We're actively improving based on developer feedback. API and tool surfaces may change.

Prerequisites

  • Node.js 18+ (check with node --version)
  • MCP-compatible IDE (Cursor, Claude Desktop, etc.)
  • Internet connection

Quick Setup (No Installation Required)

You don't need to clone or build anything. Just configure your MCP client to launch the server via npx.

For Cursor Users

Add this to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "adobe-express-add-on": {
      "command": "npx",
      "args": [
        "@adobe/express-add-on-dev-mcp@latest",
        "--yes"
      ]
    }
  }
}

For Claude Desktop Users

Add this to claude_desktop_config.json:

{
  "mcpServers": {
    "adobe-express-add-on": {
      "command": "npx",
      "args": [
        "@adobe/express-add-on-dev-mcp@latest",
        "--yes"
      ]
    }
  }
}

If there's a toggle to enable the new MCP server in your IDE, make sure it's enabled.

Verification

Many IDEs show a green indicator when the MCP server connects successfully, for example in Cursor:

The LLM will automatically invoke tools based on your prompts:

Usage

Example Prompts:

  • "What are the steps for implementing drag-and-drop functionality?"
  • "How do I create a rendition of a document"
  • "Show me examples of using the color picker component."
  • "How do I create and style text in Adobe Express?"
  • "How does the Document API work for manipulating elements?"

Pro Tips for Better Results:

  • Be Specific: "Add a stroke to a rectangle" vs "Style shapes"
  • Include Context: "I'm building a text editor add-on" helps narrow results
  • Use Technical Terms: "text styling" vs "make it look good"
  • Ask for Examples: "Show me code examples for text manipulation"
  • Specify Surfaces: "Show me iframe-ui types" vs generic requests

Important Notes

  • IDE Requirement: Requires MCP-compatible IDE for full functionality
  • Network Dependency: Required for intial download and for tool calls
  • Update Frequency: Documentation index updates periodically, not real-time

Compatibility

  • Adobe Express SDK: Latest stable versions
  • Node.js: 18.0.0 or higher required
  • MCP Protocol: v1.0 supported
  • Tested IDEs: Cursor 0.40+, Claude Desktop 1.0+, Visual Studio Code 1.80+

Getting Started Workflow

  1. Configure your IDE (see setup instructions above)
  2. Try it out - ask a simple question like "How do I create text?"
  3. Explore the APIs - try "Show me the Editor interface"
  4. Build something - use the tools while developing your add-on

Troubleshooting

Server Won't Start

  • ✅ Check Node.js version: node --version (needs 18+)
  • ✅ Verify MCP config JSON syntax
  • ✅ Ensure firewall allows npx downloads
  • ✅ Ensure you are connected to the internet

No Documentation Results

  • ✅ Use specific technical terms ("text styling" vs "make it pretty")
  • ✅ Try adding "Adobe Express Add-ons" for an additional context cue
  • ✅ Try broader queries first, then narrow down
  • ✅ Double-check API names and concepts

Missing Type Definitions

  • ✅ Specify the correct API surface (iframe-ui, express-document-sdk, add-on-sdk-document-sandbox)
  • ✅ Ensure your IDE supports MCP protocol
  • ✅ Ask for specific types rather than general requests

Resources & Support