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

yokozuna-mcp

v0.2.2

Published

MCP server (stdio) wrapping the Sumo Logic Search Job API for agent-driven log triage

Readme

Yokozuna MCP

CI Docs npm License Info

Yokozuna MCP (Model Context Protocol) gives coding agents (Claude Code, Claude Desktop, …) programmatic access to Sumo Logic logs via the Search Job API — so issues in preview deployments and production can be found and triaged without leaving the editor.

  • Transport: stdio (local, per-developer; credentials via env vars)
  • Deployment default: EU (api.eu.sumologic.com), configurable
  • Token-economical by default: lean output with explicit levers (detail, fields, dedupe), bulk data goes to files instead of your context window
  • Zero-config & schema-learning: only SUMO_ACCESS_ID + SUMO_ACCESS_KEY are required. Severity schemas vary per system — the triage tools auto-detect each scope's severity signal at call time and disclose exactly what they applied (predicate, provenance, matched-N-of-M); sumo_describe_schema learns any scope's schema in depth and proposes paste-ready filters. No schema config exists, on purpose.

Installation

Requires Node.js >= 20 and a Sumo Logic Enterprise access ID/key pair (ideally a read-only service account). The package is on npm — npx -y yokozuna-mcp fetches and runs it, so registering it in your MCP client is the whole install.

Claude Code

claude mcp add yokozuna --env SUMO_ACCESS_ID=suXXXX --env SUMO_ACCESS_KEY=<key> --env SUMO_DEPLOYMENT=eu -- npx -y yokozuna-mcp

Add --scope user to make it available in every project. Verify with claude mcp list.

Codex

Add to ~/.codex/config.toml (or use codex mcp add yokozuna --env SUMO_ACCESS_ID=suXXXX --env SUMO_ACCESS_KEY=<key> -- npx -y yokozuna-mcp):

[mcp_servers.yokozuna]
command = "npx"
args = ["-y", "yokozuna-mcp"]

[mcp_servers.yokozuna.env]
SUMO_ACCESS_ID = "suXXXX"
SUMO_ACCESS_KEY = "<key>"
SUMO_DEPLOYMENT = "eu"

Other clients (Claude Desktop, .mcp.json, from-source) are covered in the installation docs.

Environment variables

The server does not read a .env file by itself — pass variables via the MCP client's env block (as above).

| Var | Required | Default | Notes | |---|---|---|---| | SUMO_ACCESS_ID | yes | — | Access ID. | | SUMO_ACCESS_KEY | yes | — | Access key. Never logged or echoed. | | SUMO_DEPLOYMENT | no | eu | One of au,ca,ch,de,eu,fed,in,jp,kr,us1,us2. | | SUMO_ENDPOINT | no | derived | Explicit API base URL override; takes precedence over SUMO_DEPLOYMENT. | | SUMO_UI_BASE_URL | no | service.<code>.sumologic.com | UI origin for "open in Sumo UI" deep links, e.g. https://<org>.<deployment>.sumologic.com. |

All remaining variables (output tuning, export dir, keepalive, facet defaults) are in the configuration docs.

Documentation

Full documentation — the 14-tool reference, the querying & schema-learning workflow, monitoring, troubleshooting, and development — lives at https://yokozuna-mcp.readthedocs.io/.