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

@mcp-drop/proxy

v0.1.0

Published

Proxy server for @mcp-drop/core — keeps your Anthropic API key secure

Readme

@mcp-drop/proxy

Proxy server for @mcp-drop/core that keeps your Anthropic API key out of the browser.

Why use it

Without a proxy, the browser talks directly to Anthropic and needs an API key client-side. @mcp-drop/proxy keeps that key on the server and forwards requests safely.

Install

npm install @mcp-drop/proxy

Environment variables

ANTHROPIC_API_KEY=your_key_here
PORT=3334
ALLOWED_ORIGINS=http://localhost:5173,https://your-app.com
  • ANTHROPIC_API_KEY: required
  • PORT: optional, defaults to 3334
  • ALLOWED_ORIGINS: optional, defaults to *

Run locally

ANTHROPIC_API_KEY=your_key_here npm start --workspace=packages/proxy

Health check:

curl http://localhost:3334/health

Use with @mcp-drop/core

Point the web component at your proxy with the api-proxy attribute:

<script src="https://unpkg.com/@mcp-drop/core"></script>

<mcp-drop
  api-proxy="http://localhost:3334"
  mcp-servers='[{"name":"bridge","url":"http://localhost:3333"}]'
></mcp-drop>

When api-proxy is set, @mcp-drop/core sends message requests to {api-proxy}/v1/messages instead of Anthropic directly.

Deploy

Vercel

  • Create a Node deployment from this package.
  • Set ANTHROPIC_API_KEY and ALLOWED_ORIGINS in project env vars.
  • Expose server.js as the runtime entrypoint.

Railway

  • Deploy the packages/proxy folder as a Node service.
  • Set ANTHROPIC_API_KEY, PORT, and ALLOWED_ORIGINS.
  • Railway will provide the public URL for your api-proxy attribute.

Cloudflare Workers

Cloudflare Workers do not run Express directly. Reuse the same forwarding logic from server.js in a Worker fetch() handler:

  • read ANTHROPIC_API_KEY from Worker secrets
  • validate Origin against your allowlist
  • forward POST /v1/messages to https://api.anthropic.com/v1/messages
  • stream SSE back to the browser when stream: true

Endpoints

  • GET /health{ "status": "ok", "proxy": true }
  • POST /v1/messages → forwards message requests to Anthropic, including streaming

License

MIT