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

nebula-mcp

v1.0.0

Published

MCP server for the Nebula Control Plane API

Readme

nebula-mcp

MCP server for the Nebula Control Plane API. Install via npm — no clone or local build required.

Quick start

Add one entry to your MCP config (Claude Desktop, Claude Code .mcp.json, or Cursor):

{
  "mcpServers": {
    "nebula": {
      "command": "npx",
      "args": ["-y", "nebula-mcp"],
      "env": {
        "NEBULA_API_URL": "https://admin.nebula.andinolabs.ai"
      }
    }
  }
}

npx -y fetches and caches the package on first use.

Or via Claude Code CLI:

claude mcp add nebula -- npx -y nebula-mcp

Set NEBULA_API_URL in the environment when adding if your control plane URL differs.

Environment variables

| Var | Default | Description | |---|---|---| | NEBULA_API_URL | http://localhost:8080 | Nebula Control Plane base URL | | NEBULA_API_TOKEN | (empty) | Bearer token for headless/CI (optional) |

Authentication

Interactive login (default)

When NEBULA_API_TOKEN is not set, the server opens your browser to complete an OAuth 2.0 + PKCE login on the first request. Tokens are persisted to ~/.config/nebula/tokens.json and refreshed automatically. The browser only re-opens when the refresh token expires (~30–90 days).

Headless / CI

Set NEBULA_API_TOKEN to a long-lived API key. This bypasses the browser flow entirely and no token file is read or written.

Tools exposed

| Tool | Domain | |---|---| | login | Auth | | health_check | Health | | list_apps / get_app | Platform apps | | list_clusters / get_cluster | Platform clusters | | list_tenants / get_tenant / create_tenant | Catalog – Tenants | | get_tenant_github_status / list_tenant_github_repos | Catalog – GitHub | | get_tenant_jira_status / list_tenant_jira_projects | Catalog – Jira | | list_environments / get_environment | Catalog – Environments | | list_applications / get_application | Catalog – Applications | | list_application_jira_issues | Catalog – Jira Issues | | list_cd_clusters / get_cd_cluster | CD – Clusters | | list_cd_pipelines / get_cd_pipeline | CD – Pipelines | | list_cloud_providers | Cloud – Providers | | list_cloud_resources / provision_cloud_resource / preview_terraform | Cloud – Resources | | list_capture_topics / get_capture_topic | Capture – Topics | | list_capture_sessions / get_capture_session_summary | Capture – Sessions |

Development

For contributors working from this repository:

pnpm install
pnpm run build

Register a local build in MCP config:

{
  "mcpServers": {
    "nebula": {
      "command": "node",
      "args": ["/absolute/path/to/claude-mcp/dist/index.js"],
      "env": {
        "NEBULA_API_URL": "http://localhost:8080"
      }
    }
  }
}

Hot-reload during development:

NEBULA_API_URL=http://localhost:8080 pnpm run dev

Publishing

From this directory:

# npm automation token, or `npm login` beforehand
export NPM_TOKEN=<token>
just publish

CI on version tags (v*) runs the same steps (pnpm install, pnpm build, npm publish) using an NPM_TOKEN secret.