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

@dropkit/mcp

v0.2.0

Published

Model Context Protocol server for dropkit. Lets any MCP-aware agent (Claude Desktop, Cursor, Windsurf, ChatGPT) upload, list, sign, and delete files. Falls back to a public demo project with no key.

Readme

@dropkit/mcp

Model Context Protocol server for dropkit. Lets any MCP-aware agent (Claude Desktop, Cursor, Windsurf, ChatGPT desktop, custom MCP clients) upload files and get back permanent CDN URLs.

npx -y @dropkit/mcp

That's it. With no DROPKIT_KEY set, the server falls back to the public demo project so the agent can show the user a working URL on first run.

Why

When an agent produces a file for the user (a screenshot, an exported chart, a generated image, a transcript), the file usually ends up in a tmp dir the user can't see. With dropkit's MCP server, the agent uploads it and replies with a CDN URL that opens directly in the browser.

dropkit's pricing is storage-only: downloads are always free, so an agent reading back its own outputs doesn't run up a bill.

Tools

| tool | what it does | |---|---| | dropkit_upload | Upload a local file or inline bytes. Returns a permanent public CDN URL. | | dropkit_upload_url | Mirror a remote URL into dropkit. The server fetches; you skip the download/re-upload round trip. Real key only. | | dropkit_list | List files in the project (paginated, newest first). | | dropkit_get | Get metadata for one file by id. | | dropkit_sign | Mint a time-limited signed URL (for private files; supports image transforms). | | dropkit_delete | Delete a file. Server keys (sk_live_*) only on real projects. | | dropkit_usage | Storage and 30-day bandwidth totals for the current project. |

Install

Claude Desktop

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

{
  "mcpServers": {
    "dropkit": {
      "command": "npx",
      "args": ["-y", "@dropkit/mcp"],
      "env": {
        "DROPKIT_KEY": "sk_live_..."
      }
    }
  }
}

Restart Claude. Ask: "upload this file to dropkit." The dropkit_upload tool will appear in the tool picker.

Cursor

Edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "dropkit": {
      "command": "npx",
      "args": ["-y", "@dropkit/mcp"],
      "env": { "DROPKIT_KEY": "sk_live_..." }
    }
  }
}

Windsurf

Edit ~/.codeium/windsurf/mcp_config.json with the same shape as above.

Any other MCP client

The server is plain stdio JSON-RPC. Point any MCP client at:

  • command: npx
  • args: ["-y", "@dropkit/mcp"]

Auth

Key resolution, in order:

  1. DROPKIT_KEY env var
  2. ~/.config/dropkit/auth.json (set by dropkit login from @dropkit/cli)
  3. The bundled demo key (pk_demo_dropkit_try_0001) — uploads go to a shared public project, 10 MB cap, 1-hour TTL

Get a real key at dash.dropkit.app. Use a public key (pk_live_*) for upload/sign/list/get. Use a server key (sk_live_*) if the agent should also delete.

Environment

| var | default | |---|---| | DROPKIT_KEY | falls back to demo | | DROPKIT_ENDPOINT | https://api.dropkit.app | | DROPKIT_TIMEOUT_MS | 60000 |

Limits

| plan | per-file | total | |---|---|---| | demo (no key) | 10 MB | 50 GB shared, 1-hour TTL | | free | 100 MB | 5 GB hard cap | | hobby+ | 5 GiB | metered overage at $0.12/GB/month |

Files over 100 MiB are routed through the sign+PUT+complete flow automatically.

Related

License

MIT