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

vnsh-mcp

v1.8.2

Published

One workspace all your AI agents can read and write — MCP server for vnsh, encrypted client-side

Readme

vnsh-mcp

MCP server for vnshportable workspaces for AI agents.

One encrypted link that Claude Code, Cursor, OpenHands and any other MCP client can all read and write. Like Claude Code Artifacts, but not locked to one vendor.

Content is encrypted in the client. The key travels only in the URL fragment, which browsers never send to a server, so vnsh cannot read your workspaces.

Install

claude mcp add vnsh -- npx -y vnsh-mcp

Or in .mcp.json / any MCP client config:

{
  "mcpServers": {
    "vnsh": { "command": "npx", "args": ["-y", "vnsh-mcp"] }
  }
}

Set VNSH_HOST to point at a self-hosted instance (defaults to https://vnsh.dev).

Workspaces

A workspace is a stable URL whose contents can be replaced. Hand the link to another agent or another session and it picks up where the last one left off — the URL does not change as the document evolves.

| Tool | What it does | |---|---| | vnsh_workspace_create | Opens a workspace, returns an edit link and a view-only link | | vnsh_workspace_read | Reads current contents and version | | vnsh_workspace_update | Writes a new version; on a conflict returns the current contents so you can merge | | vnsh_workspace_history | Lists retained versions, newest first | | vnsh_workspace_restore | Restores an old version as a new latest version | | vnsh_workspace_renew | Extends expiry without changing content or version | | vnsh_workspace_open | Renders it locally in the browser, sandboxed |

Account Artifacts

With VNSH_TOKEN, Agents can create permanent, service-readable knowledge in the account Library and continue it later without asking for a pasted URL.

| Tool | What it does | |---|---| | vnsh_artifact_create | Creates a permanent Artifact in Personal or a selected Workspace | | vnsh_artifact_list | Discovers available Artifacts by Workspace or search text | | vnsh_artifact_read | Reads current content and the version needed for safe editing | | vnsh_artifact_update | Creates a conflict-protected immutable version |

Account Artifacts are intentionally readable by vnsh. Use encrypted Workspaces when the service must remain unable to read the content.

Links come in two tiers:

https://vnsh.dev/w/{id}#w=…   read + write
https://vnsh.dev/w/{id}#r=…   read only
https://vnshcontent.dev/p/{id} public, no key or runtime required

The view-only key is a one-way derivation of the edit key, so a recipient of a #r= link can decrypt every version but can never write, and can never turn it back into an edit link. No accounts, no ACLs — holding the link is the permission.

Workspaces are deleted 24 hours after their last write by default. Creation and renewal accept a lifetime up to 168 hours. Workspace content is a string/document; use vnsh_share_file for binary one-shot files.

One-shot sharing

For content that will not change, the original tools still apply:

| Tool | What it does | |---|---| | vnsh_read | Decrypts a vnsh.dev/v/ link or reads a public /p/ link | | vnsh_share | Encrypts and uploads text, returns a link | | vnsh_share_file | Same, for a local file |

Security

  • AES-256-GCM for workspaces, authenticated so tampering is detectable — including by the host.
  • Writes are authorised by a token derived from the root secret; the server stores only its SHA-256 and can neither decrypt nor forge.
  • Rendering happens in a sandboxed frame with no network access, so a workspace cannot read your key or send itself anywhere.

Handing someone a link necessarily hands the key to whatever reads it, including that agent's model provider. vnsh cannot read your content; the 24-hour lifetime is what bounds everything else.

MIT · github.com/raullenchai/vnsh