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

@sladd-no/mcp

v0.1.0

Published

MCP server for Sladd — detect and redact Norwegian PII (fodselsnummer, names, health data) in text and PDFs before documents leave your agent pipeline. Thin client over the Sladd API.

Readme

@sladd-no/mcp

MCP server for Sladd — detect and redact Norwegian PII before documents leave your agent pipeline.

Sladd finds and removes Norwegian personally identifiable information — fodselsnummer (national IDs, checksum-validated), names, addresses, phone numbers, bank accounts, health information (GDPR Article 9), DUF numbers and more — in plain text and PDFs. This package exposes that capability to any MCP-compatible agent (Claude Desktop, Claude Code, Cursor, VS Code, custom agents) as two tools:

| Tool | What it does | |---|---| | detect_pii | Scan text or a PDF → structured list of findings (type, offsets, confidence, recommended action) | | redact_document | Text → redacted_text with labels/pseudonyms. PDF → new PDF with findings irreversibly removed under black boxes, plus a verification block proving everything detected is gone |

Use it as a guard: redact first, then let the content continue through the agent flow.

Setup in 30 seconds (Claude Desktop)

Add this to claude_desktop_config.json (Settings → Developer → Edit Config):

{
  "mcpServers": {
    "sladd": {
      "command": "npx",
      "args": ["-y", "@sladd-no/mcp"],
      "env": { "SLADD_API_KEY": "sk_sladd_..." }
    }
  }
}

On Windows, if npx is not found, use "command": "cmd", "args": ["/c", "npx", "-y", "@sladd-no/mcp"].

Restart Claude Desktop. Then try: "Check vedtak.pdf on my desktop for Norwegian PII, and give me a redacted copy."

Claude Code:

claude mcp add sladd --env SLADD_API_KEY=sk_sladd_... -- npx -y @sladd-no/mcp

Need a key? API keys (sk_sladd_...) are issued at sladd.no/api.

Remote endpoint (no install)

For clients that support Streamable HTTP with custom headers (Claude Code, Cursor, VS Code, programmatic agents):

URL:    https://sladd.no/mcp
Header: Authorization: Bearer sk_sladd_...
claude mcp add --transport http sladd https://sladd.no/mcp --header "Authorization: Bearer sk_sladd_..."

Note: claude.ai web connectors require OAuth and are not supported yet. The remote endpoint accepts base64 PDFs up to ~3 MB per request; for larger files use the local install (file_path input has a 20 MB limit).

How PDFs flow (local install)

The local server accepts a file_path — the agent never has to base64 a document through its context window:

  1. The server reads the PDF from disk and sends it to the Sladd API over HTTPS.
  2. The API detects, redacts (rasterized black boxes — underlying text deleted), re-scans its own output, and returns the verified PDF.
  3. The server writes <name> [sladd].pdf next to the input (never overwriting anything) and returns the path + verification report.

The document content never enters the model's context — only the findings and the report do.

Privacy

The hosted API processes documents in memory only: never written to disk, never queued, never logged. Usage metering records metadata only (document/page counts, mode) — never content, findings text, or filenames. See sladd.no/personvern. For full data control, the same engine is available as a self-hosted Docker image and CLI.

Limits

  • Max 20 MB and 100 pages per document (remote endpoint: ~3 MB effective for base64 PDFs)
  • 60 requests per minute per key
  • mode: "deep" (NER layer, higher recall) is rolling out — until active it returns mode_unavailable; use the default fast

License

Proprietary. © Sladd — sladd.no. Contact: sladd.no/om.