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-xd-mcp

v0.1.0

Published

Model Context Protocol server for Adobe XD that enables AI-powered design capabilities

Readme

Adobe XD AI Design Assistant (MCP)

An open-source Model Context Protocol (MCP) server for Adobe XD that enables AI-powered design capabilities. This implementation works directly with Windsurf and Cursor's built-in AI capabilities, with no external API keys required.

Features

  • AI-assisted website design
  • Logo generation
  • UI/UX component creation
  • Design system automation
  • Style recommendations

Quick Installation

To use this MCP server with any MCP-compatible client (including Adobe XD), simply add this to your MCP client configuration:

{
  "mcpServers": {
    "Adobe XD Design MCP": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "adobe-xd-mcp", "--stdio"]
    }
  }
}

That's it! No API keys or additional setup required. This server leverages your client's built-in AI capabilities (like Windsurf or Cursor AI) to generate design suggestions.

Alternative Installation Methods

1. Global Installation

npm install -g adobe-xd-mcp
adobe-xd-mcp --stdio

2. Direct Repository Usage

git clone https://github.com/yourusername/adobe-xd-mcp.git
cd adobe-xd-mcp
npm install
npm start

Architecture

This project implements a Model Context Protocol (MCP) server that interfaces with Adobe XD through its UXP Plugin API. The server sends design prompts to the client-side AI, which generates designs directly in the environment.

+---------------+      +-------------------+      +---------------+
|               |      |                   |      |               |
|  Adobe XD     |<---->|  XD MCP Plugin    |<---->|  MCP Server   |
|  (UXP Host)   |      |  (UXP Plugin)     |      |  (Node.js)    |
|               |      |                   |      |               |
+---------------+      +-------------------+      +---------------+
        |                                                |
        v                                                v
+---------------+                               +----------------+
|               |                               |                |
| Windsurf AI   |                               | Design Prompts |
| Cursor AI     |                               | & Templates    |
|               |                               |                |
+---------------+                               +----------------+

How It Works

Unlike traditional MCP servers that require external AI APIs, this implementation:

  1. Receives design requests through the MCP protocol
  2. Structures the requests into detailed prompts
  3. Sends these prompts back to the client environment (Windsurf/Cursor)
  4. Relies on the client's built-in AI capabilities to generate the actual designs
  5. No external API keys or services required!

Available Design Tools

The MCP server provides the following AI-powered design tools:

  1. Generate Website Design - Create complete website designs based on descriptions, style preferences, and industry requirements
  2. Create Logo - Generate professional logo designs with customizable styles and color schemes
  3. Design UI Component - Create individual UI components like buttons, forms, cards, and navigation elements
  4. Suggest Color Palette - Generate harmonious color palettes based on mood, base colors, and project requirements
  5. Create Design System - Develop comprehensive design systems including colors, typography, components, and guidelines

Each tool is accessible through the MCP protocol and provides detailed design instructions that the client-side AI can use to generate designs.

Configuration Options

When running the server via CLI, you can specify these options:

| Option | Description | Default | |--------|-------------|---------| | --port | Port to run the server on (for HTTP/WebSocket) | 3000 | | --stdio | Use stdio transport for MCP integration | false | | --log-level | Log level (debug, info, warn, error) | info |

Example usage:

npx adobe-xd-mcp --stdio --log-level=debug

Getting Started

  1. Install the Adobe XD MCP Plugin
  2. Start the MCP Server using the configuration above
  3. Begin designing with AI assistance directly in Adobe XD

Contributing

Contributions are welcome! This is an open project for everyone to use.

License

This project is open source and available to everyone.