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

@mpurdon/mcp-sumologic

v0.1.0

Published

Local stdio MCP server for the Sumo Logic search API.

Readme

@mpurdon/mcp-sumologic

A local stdio MCP server for the Sumo Logic search API. Start search jobs, poll for results, and (optionally) use a context-config file that maps friendly application/infrastructure names to source categories and canned query shortcuts.

  • Runs the Sumo Logic search-job lifecycle (create → poll → fetch records/messages)
  • Optional sumologic-context.json adds environment-aware source discovery and query shortcuts
  • stdio only; credentials come from environment variables and are never returned over the wire

Install

npx -y @mpurdon/mcp-sumologic

Or register it interactively with npx @mpurdon/mcp-servers configure.

Configuration

Set these in the env block of your host's MCP config (see below):

| Variable | Required | Default | Description | | -------------------------- | -------- | ------------------------------- | ----------------------------------------------------------------------------------------------- | | SUMOLOGIC_ACCESS_ID | yes | — | Sumo Logic access ID. | | SUMOLOGIC_ACCESS_KEY | yes | — | Sumo Logic access key. | | SUMOLOGIC_API_ENDPOINT | no | https://api.sumologic.com/api | Your deployment's API endpoint (list). | | SUMOLOGIC_CONTEXT_CONFIG | no | ./sumologic-context.json | Path to an optional context-config JSON. Missing file is fine — the server degrades gracefully. | | SUMOLOGIC_DEFAULT_ENV | no | production | Default environment key used by context-aware tools. |

Create access keys in Sumo Logic under Administration → Security → Access Keys.

Register with your Claude host

{
  "mcpServers": {
    "sumologic": {
      "command": "npx",
      "args": ["-y", "@mpurdon/mcp-sumologic"],
      "env": {
        "SUMOLOGIC_ACCESS_ID": "...",
        "SUMOLOGIC_ACCESS_KEY": "...",
        "SUMOLOGIC_API_ENDPOINT": "https://api.us2.sumologic.com/api"
      }
    }
  }
}

Config file location per host:

  • Claude Desktop~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
  • Claude Code~/.claude.json (user) or a project .mcp.json
  • Claude Cowork — the workspace's .mcp.json

Restart the host.

Security notes

  • Credentials are read from env only and are sent to Sumo Logic via HTTP Basic auth — they are never echoed in tool results or errors.
  • stdio only: no network listener is opened by the server itself.
  • All tool inputs are validated with zod before any API call.