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

@vendortrace/mcp

v1.0.0

Published

VendorTrace MCP server. Query your vendor compliance data from Claude, Cursor, and any MCP-compatible AI assistant.

Readme

@vendortrace/mcp

MCP server for VendorTrace. Query your vendor compliance data from Claude, Cursor, Windsurf, and any MCP-compatible AI assistant.

What it does

Exposes your VendorTrace vendor register, scan results, transfer risk analysis, and questionnaire status as MCP tools. Ask your AI assistant about vendor compliance without leaving your workflow.

Tools

| Tool | Description | |------|-------------| | get_compliance_summary | Portfolio-wide briefing: transfer risk totals, unreviewed changes, pending questionnaires. Start here. | | list_vendors | List tracked vendors with transfer risk level, resolution status, and last scan date. | | get_vendor | Latest scan result for a domain: detected third-party services, geographic regions, certifications. | | scan_vendor | Trigger an outside-in scan of a vendor domain. Optionally wait for results. | | get_vendor_changes | Infrastructure changes detected since the last scan: new vendors, new countries added or removed. | | get_transfer_risks | Portfolio-wide breakdown of vendors by transfer mechanism (SCC, adequacy decision, no mechanism). | | list_questionnaires | Questionnaires sent to vendors with status and open discrepancy count. |

Setup

1. Get an API key

Create an API key at vendortrace.io/account/api-keys.

2. Add to your AI client

Claude Desktop — edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "vendortrace": {
      "command": "npx",
      "args": ["-y", "@vendortrace/mcp"],
      "env": {
        "VENDORTRACE_API_KEY": "your-api-key"
      }
    }
  }
}

Cursor — add to .cursor/mcp.json in your project, or ~/.cursor/mcp.json globally:

{
  "mcpServers": {
    "vendortrace": {
      "command": "npx",
      "args": ["-y", "@vendortrace/mcp"],
      "env": {
        "VENDORTRACE_API_KEY": "your-api-key"
      }
    }
  }
}

Windsurf — edit ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "vendortrace": {
      "command": "npx",
      "args": ["-y", "@vendortrace/mcp"],
      "env": {
        "VENDORTRACE_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code — add .mcp.json to your project root:

{
  "mcpServers": {
    "vendortrace": {
      "command": "npx",
      "args": ["-y", "@vendortrace/mcp"],
      "env": {
        "VENDORTRACE_API_KEY": "your-api-key"
      }
    }
  }
}

Environment variables

| Variable | Required | Description | |----------|----------|-------------| | VENDORTRACE_API_KEY | Yes | API key from vendortrace.io/account/api-keys | | VENDORTRACE_API_URL | No | Override the API base URL. Defaults to https://api.vendortrace.io. |

Example prompts

  • "Give me a compliance summary across my vendors"
  • "Which vendors have no transfer mechanism in place?"
  • "Show me unreviewed infrastructure changes from this week"
  • "Scan stripe.com and tell me what third-party services they use"
  • "Are there any questionnaires waiting for a response?"
  • "What countries are in my vendor footprint?"

Requirements

  • Node.js 20 or later
  • A VendorTrace account with at least one domain scanned

License

MIT