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

@orenvill/mcp-explorer

v0.8.1

Published

Browser-based explorer for MCP servers over streamable HTTP — list and invoke tools with auto-generated forms.

Downloads

465

Readme

MCP Explorer

Browser-based explorer for MCP servers over streamable HTTP or stdio — list and invoke tools with auto-generated forms.

Install

npm install -g @orenvill/mcp-explorer

The -g flag installs globally, making the mcp-explorer command available anywhere in your terminal.

Requirements: Node.js 20 or later (node --version).

Upgrading from an older install? If you previously used npm install -g mcp-explorer or npm install -g github:OrenVill/mcp-explorer, uninstall first:

npm uninstall -g mcp-explorer
npm install -g @orenvill/mcp-explorer

Run

mcp-explorer              # start + open browser at http://127.0.0.1:4173/
mcp-explorer 3000         # custom port
mcp-explorer --no-open    # skip opening the browser (also: OPEN=0)

Update

npm update -g @orenvill/mcp-explorer

What it does

Point it at any MCP server:

  • HTTP — streamable HTTP endpoint (typically http://host:port/mcp)
  • Stdio — local subprocess (command, args, optional cwd and env), same as Cursor/Claude Desktop MCP config

The explorer auto-connects, lists all available tools, and generates input forms from each tool's JSON Schema so you can invoke them immediately from the browser.

Stdio note: stdio servers use a local Node bridge built into mcp-explorer. You must run the app via mcp-explorer (or npm run dev from source) — opening static files alone does not spawn subprocesses.

  • Add / edit / remove HTTP or stdio MCP servers — persisted to localStorage
  • Stdio bridge for local command-based MCP servers (requires mcp-explorer or npm run dev)
  • Local proxy mode for HTTP MCP servers that do not expose browser CORS headers
  • Auto-discovered tool list via tools/list
  • Generated forms for strings, numbers, booleans, enums, and JSON objects/arrays
  • Protocol Inspector timeline for debugging MCP calls, results, errors, and durations
  • Schema Lab for inspecting tool schemas, generating example args, and copying JSON-RPC calls
  • Permission Surface audit, Prompt Injection scan, and Observation Journal for MCP trust evaluation
  • Meta-tool discovery with one-click Discover all tools

Full documentation

github.com/OrenVill/mcp-explorer

License

MIT