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

locklink-mcp

v0.3.0

Published

MCP server for LockLink — create and request one-time secrets while keys stay client-side

Downloads

573

Readme

locklink-mcp

Local MCP server for LockLink. Speaks stdio MCP to your client and forwards to the hosted https://lockl.ink/mcp endpoint, keeping encryption keys in process memory so the server never sees plaintext or fragment keys.

Setup

{
  "mcpServers": {
    "locklink": {
      "command": "npx",
      "args": ["-y", "locklink-mcp@latest"]
    }
  }
}

On the first remote call, the shim opens a browser for LockLink sign-in and consent. It uses OAuth dynamic client registration, PKCE S256, and a temporary 127.0.0.1 loopback callback. Tokens are refreshed automatically. If no browser is available, the sign-in URL is printed to stderr instead.

Vault unlock commands

Unlocking the local vault removes the browser round trip from secret-request creation:

npx locklink-mcp login
npx locklink-mcp status
npx locklink-mcp lock
npx locklink-mcp logout

login reads the email and a masked password directly from the controlling terminal. It sends the password only to LockLink's HTTPS Better Auth sign-in, derives and verifies the vault key locally, then stores only the 32-byte vault key in the OS keychain. macOS Keychain (security), Linux Secret Service (secret-tool), and Windows Credential Locker are supported without package dependencies. Hosts without one of these backends fail closed; secret requests continue to use the existing browser setup URL.

status reports package version, OAuth scope sufficiency, keychain backend, and lock state. lock removes only the vault key. logout removes only OAuth tokens, leaving the vault key in the keychain.

When unlocked, create_secret_request generates and wraps its requester ECDH private key locally and returns the /r/:requestKey URL in that same MCP call. When locked, it retains the browser setup handoff.

Environment

| Variable | Purpose | | ----------------------- | ---------------------------------------------------------------------------- | | LOCKLINK_MCP_URL | Optional development endpoint override; defaults to https://lockl.ink/mcp. | | LOCKLINK_ACCESS_TOKEN | Optional bearer-token escape hatch that skips self-service OAuth entirely. |

OAuth client registration and tokens are stored per remote URL in ~/.locklink/oauth.json. The directory is private (0700) and the file is private (0600); writes are atomic.

Guarantees

  • Plaintext, fragment keys, and private keys never leave this process.
  • Plaintext, fragment keys, and private keys are never written to disk.
  • Only OAuth client registration and tokens are persisted on disk. The vault key is stored only by the OS keychain.

Docs: lockl.ink/docs/mcp · Source: github.com/clgeoio/locklink