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

diana-mcp

v0.1.2

Published

Diana AI Stylist — Create outfits for your Shopify store via Claude

Readme

Diana MCP

Diana is an AI stylist that creates "Shop the Look" outfits for Shopify stores. This package connects Diana to Claude via the Model Context Protocol.

Prerequisites

  1. Install the Katalogo Shopify app on your store
  2. Analyze your catalog — the app scans your products and builds a style profile
  3. Get an API key from Shopify Admin > Apps > Katalogo > Settings > API Keys

Quick Start

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "diana": {
      "command": "npx",
      "args": ["-y", "diana-mcp"],
      "env": {
        "DIANA_API_KEY": "diana_sk_your_key_here"
      }
    }
  }
}

Claude Code

Add to your project's .claude/mcp_settings.json or global settings:

{
  "mcpServers": {
    "diana": {
      "command": "npx",
      "args": ["-y", "diana-mcp"],
      "env": {
        "DIANA_API_KEY": "diana_sk_your_key_here"
      }
    }
  }
}

VS Code (Copilot)

Add to .vscode/mcp.json:

{
  "servers": {
    "diana": {
      "command": "npx",
      "args": ["-y", "diana-mcp"],
      "env": {
        "DIANA_API_KEY": "diana_sk_your_key_here"
      }
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | diana_get_store_profile | Get catalog overview — product count, gender distribution, top categories, quota usage | | diana_list_analyzed_products | Browse products with AI enrichment data — filter by gender, type, occasion, search | | diana_plan_outfits | Plan a diverse outfit portfolio with commercial goals, style direction, and occasion targeting | | diana_generate_outfits | Generate outfits from a plan (or simple params). Returns a task ID for polling | | diana_get_task_status | Poll generation progress until complete |

Example Prompts

  • "Show me my store profile and what products are available"
  • "Plan 10 winter outfits focused on cross-selling jackets"
  • "Create 5 casual weekend outfits for women"
  • "List all analyzed products under $100"

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | DIANA_API_KEY | Yes | Your API key from the Katalogo Shopify app | | DIANA_MCP_ENDPOINT | No | Custom endpoint URL (for self-hosted setups) |

How It Works

This package is a thin stdio-to-HTTP proxy with zero runtime dependencies. Claude communicates via MCP's stdio protocol, and this proxy forwards requests to Diana's hosted API with your authentication.

Claude (stdio) → diana-mcp (proxy) → Diana API (HTTPS) → Your Shopify store

All outfit generation logic, catalog analysis, and Shopify sync runs server-side. The proxy just handles the transport layer.

Support

  • Docs: https://katalogo.ai/docs
  • Issues: https://github.com/anthropics/diana-mcp/issues