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

istio-bug-report-analyzer-mcp

v0.2.1

Published

MCP server to analyze istioctl bug-report archives

Readme

istio-bug-report-analyzer-mcp

An MCP (Model Context Protocol) server that analyzes istioctl bug-report archives, identifies common problems, and suggests remediation steps.

Features

  • Collect bug reports by running istioctl bug-report against a target cluster
  • Load existing .tar.gz archives or pre-extracted directories
  • Analyze using built-in diagnostic templates for known issues
  • Query specific sections of the archive (proxy configs, logs, istiod debug endpoints)
  • Generate structured assessment documents with findings and remediation steps

Installation

One command installs the MCP server, registers it with Claude Code, and adds the /istio-report-assessment skill:

npx istio-bug-report-analyzer-mcp@latest setup

Then restart Claude Code. You're ready to go.

Updating

The MCP server automatically uses the latest version from npm each time Claude Code starts — no action needed for server updates.

To update the /istio-report-assessment skill (which lives locally on your machine), re-run setup:

npx istio-bug-report-analyzer-mcp@latest setup

Then restart Claude Code to pick up the new skill.

Available Tools

| Tool | Description | |------|-------------| | collect_bug_report | Run istioctl bug-report against a cluster and load results | | load_bug_report | Load an existing archive or directory | | get_overview | High-level mesh overview | | get_versions | Version matrix with skew detection | | get_analyze_results | istioctl analyze results (IST codes) | | get_cluster_resources | Query K8s resources by kind/namespace/name | | get_proxy_config | Envoy proxy configuration for a pod | | get_logs | Component logs with filtering | | get_istiod_debug | Istiod debug endpoints (syncz, configz, mesh, etc.) | | run_diagnostics | Run diagnostic templates against the archive | | find_errors | Scan logs for errors, deduplicate by pattern | | list_files | List all files in the archive | | get_raw_file | Read any file from the archive |

Usage with Claude Code

Use the /istio-report-assessment skill for a guided assessment workflow:

/istio-report-assessment

Or use individual tools directly:

Load the bug report at /path/to/bug-report.tar.gz and analyze it

Solo.io Integration

Set SOLO_MODE=true to enable integration with Solo.io internal tools (docs, KB, support agent, Zendesk, Slack) for enriched analysis.

Development

# Install dependencies
npm install

# Run tests
npm test

# Build
npm run build

# Run locally
npx tsx src/index.ts

Releasing

  1. Update the version: npm version patch|minor|major
  2. Push the commit and tag: git push origin main --tags
  3. GitHub Actions builds, tests, and publishes to npm automatically

License

Apache-2.0