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

@mseep/honeycomb-mcp

v0.0.1

Published

Model Context Protocol server for Honeycomb

Readme

Honeycomb MCP Server

A Model Context Protocol server for interacting with Honeycomb observability data. This server enables LLMs like Claude to directly analyze and query your Honeycomb datasets across multiple environments.

Features

  • Query Honeycomb datasets across multiple environments
  • Analyze columns and data patterns
  • Run basic analytics queries
  • Monitor SLOs and their status
  • View and analyze Triggers
  • Access dataset metadata and schema information

Installation

npm install
npm run build

Configuration

Create a configuration file at ~/.hny/config.json with your Honeycomb environments and API keys:

{
  "environments": [
    {
      "name": "production",
      "apiKey": "your_prod_api_key"
    },
    {
      "name": "staging",
      "apiKey": "your_staging_api_key"
    }
  ]
}

Each environment entry can also optionally include a baseUrl if you're using a different API endpoint.

Usage

With Claude Desktop

Add this to your Claude Desktop configuration (claude_desktop_config.json):

{
  "mcpServers": {
    "honeycomb": {
      "command": "node",
      "args": ["/path/to/build/index.mjs"]
    }
  }
}

Available Tools

  • list-datasets: List all datasets in an environment
  • get-columns: List all columns in a dataset
  • run-query: Run basic analytics queries with aggregations
  • analyze-column: Get detailed analysis of specific columns
  • list-slos: View all SLOs for a dataset
  • get-slo: Get detailed SLO status including compliance
  • list-triggers: View all triggers for a dataset
  • get-trigger: Get detailed trigger information

Resources

The server exposes Honeycomb datasets as resources with the URI format: honeycomb://{environment}/{dataset-slug}

For example:

  • honeycomb://production/api-requests
  • honeycomb://staging/backend-services

Development

pnpm install
pnpm run build

Requirements

  • Node.js 16+
  • Honeycomb API keys with appropriate permissions:
    • Query access for analytics
    • Read access for SLOs and Triggers
    • Environment-level access for dataset operations

Example Queries

Ask Claude things like:

  • "What datasets are available in the production environment?"
  • "Show me the SLO compliance for the API availability in production"
  • "Are there any active triggers in the staging environment?"
  • "What's the error rate in the production API dataset over the last hour?"

License

MIT