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

@czagents/sanctions

v0.1.5

Published

Sanctions screening for KYC/AML — check Czech companies and individuals against EU Financial Sanctions (FSF) and US OFAC SDN lists. Per-entity and per-statutory-member checks. Official consolidated lists, updated from source.

Readme

@czagents/sanctions

Sanctions screening for KYC/AML — check Czech companies and individuals against EU Financial Sanctions (FSF) and US OFAC SDN lists. Per-entity and per-statutory-member checks. Official consolidated lists, updated from source.

Install

npm install -g @czagents/sanctions

Usage with Claude Desktop

{
  "mcpServers": {
    "sanctions": {
      "command": "npx",
      "args": ["-y", "@czagents/sanctions"],
      "env": {
        "SANCTIONS_DB": "/absolute/path/to/sanctions.db"
      }
    }
  }
}

The local SQLite database is built by the bundled refresh CLI:

npx @czagents/sanctions-refresh

This fetches and normalizes the upstream lists into a single SQLite file. Re-run on a daily cron for fresh data.

Tools

  • search_person — fuzzy match a person by name across all loaded lists. Optional dob and nationality narrow results. Returns matches with confidence scores (0-100; 100 = exact ID match, 80+ = strong fuzzy match).
  • search_entity — fuzzy-search a sanctioned entity (company, organization) by name, optionally narrowed by country.
  • check_ico — direct exact-ID lookup of a Czech IČO; pass name to also fuzzy-match if no direct hit.
  • get_listing — full record for a single listing by ID (${source}:${source_list_id}, e.g. ofac:12345).
  • list_recent_updates — sanctions added/removed/modified since a given date — for daily watchlist monitoring.

Example prompts:

Screen "Acme Imports s.r.o." against all sanctions lists.

Is IČO 12345678 on any sanctions list?

Self-host

Source: https://github.com/martinhavel/cz-agents-mcp

git clone https://github.com/martinhavel/cz-agents-mcp
cd cz-agents-mcp
npm install
npm run build
node packages/sanctions/dist/cli-refresh.js   # build sanctions.db
SANCTIONS_DB=$PWD/sanctions.db node packages/sanctions/dist/index.js

Free tier & pricing

Free tier rate-limited. Higher limits and commercial use: https://cz-agents.dev/pricing

License

MIT — see LICENSE