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

pleamo-mcp

v1.0.0

Published

pleamo MCP server — expose AI scam/phishing URL checks as tools for any MCP client (Claude Desktop, Cursor, agents).

Readme

pleamo MCP server

Exposes pleamo's AI scam/phishing URL checks as MCP tools, so any MCP client (Claude Desktop, Cursor, your own agent) can ask pleamo "is this link safe?" before opening or recommending it.

It's a thin, authenticated proxy to the hosted pleamo API — every check goes through the same per-user and global caps that protect the service.

Tools

| Tool | What it does | | --- | --- | | check_url | Judge a URL: verdict (safe/suspicious/dangerous), severity, confidence, reason | | report_false_positive | Flag a wrongly-blocked domain for review | | get_status | Your plan + today's AI-check usage |

Setup

  1. Get a pleamo API key (a revocable key from the dashboard at https://dash.pleamo.app/keys).
  2. Point your MCP client at this server. For Claude Desktop, add to claude_desktop_config.json:
{
  "mcpServers": {
    "pleamo": {
      "command": "npx",
      "args": ["-y", "pleamo-mcp"],
      "env": {
        "PLEAMO_TOKEN": "your-api-key-here"
      }
    }
  }
}

Restart the client. You'll then be able to say things like "check this link with pleamo: https://paypa1-login.example" and the agent will call check_url.

Environment

| Var | Default | Notes | | --- | --- | --- | | PLEAMO_TOKEN | — | Required. Bearer token for the pleamo API. | | PLEAMO_API_BASE | https://dash.pleamo.app | Override for local dev (e.g. http://localhost:4400). |

Develop

npm install
npm run verify   # lint + format + unit tests
npm start        # runs the stdio server (expects an MCP client on stdin)

Quick stdio smoke test (lists the tools):

printf '%s\n' \
  '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"smoke","version":"0"}}}' \
  '{"jsonrpc":"2.0","method":"notifications/initialized"}' \
  '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}' \
  | node src/server.js

Remote (hosted) alternative

If your client supports remote MCP servers, you don't need this local process at all — connect straight to the hosted endpoint:

https://dash.pleamo.app/api/mcp

It speaks JSON-RPC over HTTP (same three tools) and authenticates with a pleamo API key as a Bearer token. Create a revocable key at https://dash.pleamo.app/keys. This local stdio server is for clients that only speak stdio (e.g. current Claude Desktop).

Notes

  • Auth / tokens — get a revocable API key from the dashboard (/keys) and set it as PLEAMO_TOKEN. (A raw session token also works, but keys are the right, revocable option.)
  • Transport — this package is stdio; the hosted /api/mcp above is the remote Streamable-HTTP variant.
  • The other MCP direction — letting the extension route checks through the user's own agent (BYO-via-MCP) is tracked alongside the extension source at pleamo/pleamo-chrome-extension.