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

@htmldrop.app/mcp

v0.2.4

Published

Model Context Protocol server for htmldrop — publish HTML or Markdown to a real hosted URL from Claude Desktop, Claude Code, Cursor, or any MCP-aware client.

Readme

@htmldrop.app/mcp

Model Context Protocol server for htmldrop — publish HTML or Markdown to a real hosted URL straight from Claude Desktop, Claude Code, Cursor, or any MCP-aware client.

Quick start

  1. Create an API token. Sign in at htmldrop.app/dashboard/settings → API tokens → Create token. Copy the hsk_live_… value — it's shown only once.

  2. Add to your MCP client config. For Claude Desktop edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

    {
      "mcpServers": {
        "htmldrop": {
          "command": "npx",
          "args": ["-y", "@htmldrop.app/mcp"],
          "env": {
            "HTMLDROP_API_TOKEN": "hsk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
          }
        }
      }
    }

    For Claude Code: add the same block under mcpServers in ~/.config/claude-code/config.json (or wherever your Claude Code MCP config lives).

    For Cursor: Settings → MCP → Add server with command npx, args ["-y", "@htmldrop.app/mcp"], env HTMLDROP_API_TOKEN.

  3. Restart your MCP client. It will fetch and launch the server on first use.

  4. Ask the model. Try: "Make a single-page HTML CV for Alex Rivera and publish it to htmldrop." The model will call htmldrop_publish and reply with the public URL.

Tools

| Tool | What it does | |---|---| | htmldrop_publish | Publish an HTML or Markdown document. Returns the public share URL, site id, and slug. Accepts an optional slug and title. | | htmldrop_list | List every site the authenticated tenant owns. | | htmldrop_delete | Delete a site by id. |

Configuration

| Env var | Default | Purpose | |---|---|---| | HTMLDROP_API_TOKEN | (required) | The hsk_live_… token minted in your dashboard. | | HTMLDROP_API_URL | https://htmldrop.app/api/v1 | Override for staging or self-hosted htmldrop instances. |

Plan limits

The MCP server hits the same API your dashboard does, so all plan caps apply:

  • Free: 3 active drops, 30-day TTL.
  • Starter ($5/mo): 10 drops, no TTL, 1 custom domain.
  • Pro ($12/mo): 25 drops, 3 custom domains.
  • Business ($39/mo): 100 drops, 10 custom domains.

When you hit a cap the tool call returns a clear error (plan_limit) that the model surfaces in chat — no silent failure.

Security notes

  • Tokens carry full tenant privileges. Keep them out of source control.
  • Revoke a token from Settings → API tokens; the revoke is effective immediately.
  • The server runs on your machine over stdio. No traffic flows through htmldrop other than the API calls the tool makes on your behalf.

License

MIT — © Middle East Software Solutions Limited