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

@cisco_open/mcptoolkit-editor-dist

v1.1.0-rc.2

Published

Prebuilt, host-neutral static build of the MCP Description Editor — serve from any origin or subpath.

Downloads

129

Readme

@cisco_open/mcptoolkit-editor-dist

This module exposes the MCP Description Editor's entire prebuilt dist/ folder as a dependency-free npm package — the analog of swagger-editor-dist. It lets you host the editor anywhere without building it from source.

The build is fully self-contained and host-neutral: Monaco Editor and its web workers are served from the bundle's own origin (no CDN), and all asset paths are relative, so the dist/ folder can be served from any domain, subdomain, or subpath. It makes no network requests of its own and ships no telemetry (see Privacy & analytics).

Prefer to build from source (and pin your own toolchain)? Clone cisco-open/mcptoolkit-editor and run npm run build — this package is just that build output, published.

Install

npm install @cisco_open/mcptoolkit-editor-dist

Serve

Serve the prebuilt dist/ directory with any static file server:

npx serve node_modules/@cisco_open/mcptoolkit-editor-dist/dist

Or copy it into your host's web root / Cloudflare Pages (or Netlify, S3, GitHub Pages, …) output directory:

cp -R node_modules/@cisco_open/mcptoolkit-editor-dist/dist/. ./public/editor/

Because assets use relative paths, serving from a subpath such as https://example.com/editor/ works without extra configuration.

Content-Security-Policy

The editor runs under a strict CSP. A recommended baseline (also shipped as dist/_headers for hosts that honor it, e.g. Cloudflare Pages / Netlify):

Content-Security-Policy: default-src 'self'; script-src 'self'; worker-src 'self' blob:; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self' data:; connect-src 'self'; object-src 'none'; base-uri 'self'; frame-ancestors 'none'

Contents

  • dist/index.html — entry point
  • dist/assets/* — hashed JS/CSS chunks and Monaco web workers
  • dist/_headers — default security headers for supporting static hosts

Privacy & analytics

This package ships no telemetry. Unlike some *-dist packages, it has no install-time analytics — there is no postinstall hook and no Scarf-style beacon; installing or copying it sends nothing. The prebuilt app is pure client-side and makes no network requests of its own (verify with your browser's Network tab: zero third-party calls).

Runtime (in-browser) usage analytics are intentionally a hosting decision, left to whoever serves the bundle. If you want them, add your own script at your hosting layer and permit it in the page's CSP (script-src / connect-src). The rationale, trade-offs, and options are documented in docs/maintainers/analytics.md.

License

Apache-2.0. See the repository for source and contribution guidelines.