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

@vendorval/mcp

v0.1.0

Published

VendorVal MCP server — vendor verification + canonical-entity lookup for LLM agents

Readme

@vendorval/mcp

MCP server for VendorVal — vendor verification and canonical-entity lookup for LLM agents.

What it does

Adds 5 chargeable tools, 3 free resources (for LLM context), and 3 free prompts (canned recipes) to your MCP-compatible client (Claude Desktop, Cursor, VS Code, etc.).

Tools (chargeable)

| Tool | What it does | Charge | |---|---|---| | lookup_entity | Resolve a vendor by UEI / TIN / VAT-ID / LEI / NPI / DUNS | 1 unit | | get_entity_profile | Full canonical profile by entity id — identifiers, addresses, certifications, exclusions, regulatory disclosures, per-source frozen blocks | 1 unit | | list_certifications | SBA 8(a) / HUBZone / WOSB / SDVOSB / state MWBE-DBE-SDVOB filings | 1 unit | | verify_entity | Live checks: SAM registration + exclusion, IRS TIN match, VIES, GLEIF, OFAC + EU sanctions, USPS address | N units (one per check) | | list_monitors | List configured re-verification monitors with change-webhook delivery | 1 unit |

Resources (free)

| Resource | URI | Source | |---|---|---| | Getting-started guide | vendorval://docs/getting-started | Embedded markdown | | Verification check catalog | vendorval://meta/check-types | Embedded JSON | | Country × check matrix | vendorval://meta/countries | Live /v1/meta/countries (1 unit per read) |

Prompts (free recipes)

| Prompt | What it does | Args | |---|---|---| | verify_vendor_before_bid | Standard procurement gate: lookup → profile → verify → bid-eligibility memo | identifier_type, identifier_value, country? | | triage_debarment_flag | Multi-source exclusion triage: read profile, group by authority, recommend next action | entity_id | | monitor_bulk_import | Resolve a vendor list and stage change monitors for human approval | identifiers, checks?, cadence? |

All tools funnel through api.vendorval.com. Quota, rate-limit, and org-scoping enforced server-side via your API key.

Install

npm install -g @vendorval/mcp

Or run via npx @vendorval/mcp directly from your MCP config.

Get an API key

  1. Sign up at vendorval.com
  2. Open app.vendorval.com/api-keys
  3. Generate an MCP-scoped key (vv_mcp_* prefix) — these have higher burst rate-limits than regular API keys and let you segment usage per agent integration

Claude Desktop config

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "vendorval": {
      "command": "npx",
      "args": ["-y", "@vendorval/mcp"],
      "env": {
        "VENDORVAL_API_KEY": "vv_mcp_..."
      }
    }
  }
}

Restart Claude Desktop. The 5 tools appear under "vendorval" in the tools panel.

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "mcpServers": {
    "vendorval": {
      "command": "npx",
      "args": ["-y", "@vendorval/mcp"],
      "env": {
        "VENDORVAL_API_KEY": "vv_mcp_..."
      }
    }
  }
}

Multi-org

If your VendorVal account belongs to multiple orgs, pin which one the MCP server speaks for via VENDORVAL_ORG_ID:

"env": {
  "VENDORVAL_API_KEY": "vv_mcp_...",
  "VENDORVAL_ORG_ID": "org_..."
}

Self-hosted / VPC

Pointing the MCP at a self-hosted VendorVal deployment:

"env": {
  "VENDORVAL_API_KEY": "vv_live_...",
  "VENDORVAL_API_URL": "https://api.vendorval.your-domain.com"
}

Example prompts

Drop these into a conversation with the MCP enabled:

"Look up this vendor: UEI LYHWAQBA7Q15. Show me their full profile and any exclusions."

"We're about to bid with TIN 86-2456134 — run SAM registration + exclusion + IRS TIN match and tell me if they're cleared."

"List every SDVOB-certified vendor we know about in NY."

Pricing

Tool calls are metered against your VendorVal plan's quota — same per-call cost as direct API access. Free-tier plans get 100 calls/mo; Pro tier ($199/mo) gets 10,000 calls/mo. See vendorval.com/pricing.

Verify calls fan out to multiple authoritative sources per request and are billed per check (e.g. ["sam_registration", "sam_exclusion", "ofac_screen"] = 3 units).

Hosted remote endpoint

If your MCP client can't spawn a local stdio subprocess (e.g. claude.ai web), point it at the hosted endpoint:

https://mcp.vendorval.com/mcp

Same tools, same resources, same prompts — the difference is just the transport (HTTPS instead of stdio). See the remote endpoint docs for the configuration details.

License

MIT