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

voidwalker-mcp

v1.0.2

Published

Local MCP server for Voidwalker — streams browser storage, cookies, and DOM mutations to AI agents

Downloads

35

Readme

voidwalker-mcp

Local MCP server for Voidwalker — gives AI agents real-time access to your browser's localStorage, sessionStorage, IndexedDB, cookies, and DOM mutations.

Requirements

Installation

npm install -g voidwalker-mcp

Usage

Start the server:

voidwalker-mcp

On first run, a 256-bit auth token is generated at ~/.voidwalker/token (mode 0600). Paste this token into the Voidwalker browser extension popup to connect.

Connect to your AI client

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "voidwalker": {
      "command": "voidwalker-mcp"
    }
  }
}

Claude Code

claude mcp add voidwalker voidwalker-mcp

Cursor / SSE clients

Start the server, then connect via SSE at http://127.0.0.1:3695/sse?token=<your-token>.

Configuration

| Environment variable | Default | Description | |---|---|---| | VOIDWALKER_PORT | 3695 | WebSocket + HTTP port |

Available MCP tools

| Tool | Description | |---|---| | read_storage | Read localStorage or sessionStorage | | query_indexeddb | Query an IndexedDB object store | | get_cookie | Get a specific cookie | | search_storage | Search storage by key or value pattern | | search_indexeddb | Search IndexedDB records by value pattern | | search_cookies | Search cookies by name or value pattern | | decode_storage_value | Decode a value as JSON, base64, or JWT | | diff_storage | Compare storage against a baseline snapshot | | get_storage_history | Mutation history for an origin | | get_dom_mutations | Recent DOM mutations for a tab | | set_storage | Write a key to localStorage or sessionStorage | | delete_storage | Delete a key from storage | | delete_indexeddb | Delete a record from IndexedDB | | navigate_tab | Navigate a tab to a URL | | request_snapshot | Re-send a full storage snapshot | | clear_server_state | Clear in-memory state |

Security

  • All traffic is local (ws://127.0.0.1:3695) — nothing leaves your machine
  • Token-authenticated WebSocket (256-bit random token)
  • Sensitive keys (token, auth, session, jwt, password, secret, etc.) are automatically redacted
  • Every tool call is logged to ~/.voidwalker/activity.log

License

MIT