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

pixelvault-mcp

v1.0.2

Published

MCP server for PixelVault — compliance-cleared AI asset search and licensing for post production, editorial, and e-commerce

Readme

PixelVault MCP Server

Compliance-cleared AI asset search and licensing for post production, editorial, and e-commerce.

PixelVault is a two-sided AI asset marketplace. Every asset is sourced from licensed AI platforms (Adobe Firefly, Moonvalley), pre-cleared for commercial use, and delivered with an auto-generated usage agreement at checkout. This MCP server gives AI agents native access to the full search and licensing workflow.

What It Does

The PixelVault MCP server exposes three tools:

| Tool | Description | |------|-------------| | search_assets | Submit a natural language brief → receive a ranked shortlist of pre-cleared assets with compliance status and rationale | | get_asset_details | Get full metadata and compliance documentation for a specific asset | | generate_usage_agreement | Provide approved asset IDs + project details → receive a completed usage agreement draft |

The human's only job is to approve the shortlist. Everything before and after is AI-operated.

Install

Claude Desktop (recommended)

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "pixelvault": {
      "command": "npx",
      "args": ["-y", "pixelvault-mcp"]
    }
  }
}

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Other MCP clients

npx pixelvault-mcp

The server communicates over stdio (standard MCP transport).

Tools

search_assets

Search for pre-cleared assets matching a creative brief.

Parameters:

  • brief (required) — Natural language description of the visual asset needed. Include setting, tone, narrative function, distribution platform, territory.
  • license_type"Film & TV" | "Editorial" | "Commercial". Auto-detected from brief if omitted.
  • format"video" | "image". Omit for all formats.
  • vertical"post production" | "editorial" | "ecommerce"
  • territory — Distribution territory. Included in usage agreement.

Example prompt to Claude:

"Find me pre-cleared B-roll of a late-night urban exterior for a Netflix drama. Needs negative space on the right for lower-third graphics. Film & TV Commercial license, worldwide."

get_asset_details

Get full metadata and compliance documentation for a specific asset.

Parameters:

  • asset_id (required) — Asset ID from search_assets results

generate_usage_agreement

Generate a usage agreement draft after the human approves a shortlist.

Parameters:

  • asset_ids (required) — Array of approved asset IDs
  • project_title (required) — Production or project title
  • production_company (required) — Production company or organization
  • distribution_platform (required) — e.g. "Netflix, Broadcast", "Editorial Web", "Instagram, Meta Ads"
  • territory (required) — e.g. "Worldwide", "US Only", "EU"
  • license_type (required) — "Film & TV Commercial" | "Editorial" | "Commercial Digital"
  • air_date — Anticipated air or publication date

Compliance Model

Every asset in PixelVault meets all four criteria:

  1. Trained on licensed content, public domain, or proprietary data — not scraped unlicensed web content
  2. Offers a commercial use license for generated outputs
  3. Provides documentation of training data and licensing structure
  4. No unresolved copyright infringement ruling related to training data

Approved source platforms: Adobe Firefly, Moonvalley

Workflow

Agent receives brief
       ↓
search_assets(brief) → ranked shortlist
       ↓
[Human reviews and approves shortlist]
       ↓
generate_usage_agreement(asset_ids, project_params) → agreement draft
       ↓
[Human completes payment at pixelvault-ui.vercel.app]
       ↓
Executed agreement + signed delivery URL delivered to both parties

Environment

| Variable | Default | Description | |----------|---------|-------------| | PIXELVAULT_API_URL | https://asset-registry-api-production.up.railway.app | Override API base URL |

Links