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

pulsetel-cli

v2.5.1

Published

MCP server that detects cross-signal correlations in project health — the thing no individual check can tell you.

Readme

PulseTel

MCP server that detects cross-signal correlations in project health — the thing no individual check can tell you.

npm version Tests License

Why This Exists

AI agents can already check CI status with gh run list and find vulnerabilities with npm audit. What they can't do is connect the dots:

"CI started failing AND coverage dropped 8% — because of the dependency I added yesterday."

Individual checks give you isolated signals. PulseTel gives you causal chains — why things are breaking, not just that they're breaking.

Other agents check signals. PulseTel connects them.

The Correlation Advantage

Agent runs npm audit → 2 critical vulns
Agent runs gh run list → CI green
Agent thinks: "Everything's fine" ❌

Agent runs pulsetel correlate →
  💥 security_scan_gap detected (92% confidence)
  2 critical vulns + CI green = no security scanning in CI
  Chain: no_security_scan_in_ci → vulnerabilities_ship_to_production
  Action: Add 'npm audit --audit-level=high' to CI pipeline ✅

An agent with shell access gets the same data points but never thinks to connect them. PulseTel does — and tells the agent exactly what to do.

Ship Gate

One call. One answer.

pulsetel gate
🚫 BLOCK
   2 critical correlation(s) detected — resolve before shipping
   Confidence: 85%
   Proceed if: Resolve all critical correlations and re-run pulsetel_correlate

Exit codes: 0 = proceed, 1 = block, 2 = caution. Wire it into CI, pre-commit hooks, or agent decision-making.

Installation

npx pulsetel-cli check
# or install globally
npm install -g pulsetel-cli
pulsetel check

Quick Start

1. Initialize

cd your-project
pulsetel init

Auto-detects GitHub repo, health endpoints, and creates .pulsetel.yml.

2. Correlate

pulsetel correlate        # Detect cross-signal correlations
pulsetel correlate --json # Machine-readable for agents
pulsetel gate             # Ship gate: proceed / caution / block

3. Check

pulsetel check            # Full project health check
pulsetel check --quick    # Fast triage (~2s, skips slow checks)
pulsetel check --json     # Machine-readable output

4. Analyze

pulsetel trends           # Direction, delta, velocity per check type
pulsetel anomalies        # Statistical anomaly detection (z-score)
pulsetel diff --delta     # Significant changes only (token-efficient)
pulsetel ping             # Lightweight health ping (0-100 score)

Correlation Patterns

These are the patterns PulseTel detects that no individual check can identify:

| Pattern | Signals | What It Detects | |---------|---------|----------------| | dependency_cascade | deps + ci + coverage | Dependency update caused CI failure and coverage drop | | security_scan_gap | deps + ci | Critical vulns present but CI is green — no security scanning | | bad_merge | coverage + ci + git | Recent merge introduced untested code and test instability | | coverage_quality_divergence | coverage + ci | Coverage going up but CI is flaky — new tests are unreliable | | deploy_regression | deploy + sentry + health | Runtime errors after deploy, possibly with latency regression | | delivery_bottleneck | prs + issues + ci | Stale PRs + growing issues despite healthy CI | | untested_performance_regression | health + coverage | Latency spike in untested code paths |

Every correlation returns:

  • Causal chain: dependency_update → breaking_api_change → test_failures → ci_degraded
  • Specific actionable: "Pin recently added dependencies and check changelogs for breaking changes"
  • Blast radius: "CI reliability, deployment pipeline, team velocity"
  • Confidence: 0-1 score based on signal availability and historical confirmation

MCP Tools for AI Agents

PulseTel exposes 15 MCP tools via stdio transport:

{
  "mcpServers": {
    "pulsetel": {
      "command": "npx",
      "args": ["-y", "pulsetel-cli", "mcp-stdio"]
    }
  }
}

| Tool | Purpose | Response Time | |------|---------|---------------| | pulsetel_correlate | Cross-signal correlations + ship decision | ~8s | | pulsetel_gate | Ship gate: proceed / caution / block | ~8s | | pulsetel_check | Full health check — all signals | ~8-12s | | pulsetel_quick | Fast triage (~2s) | ~1-2s | | pulsetel_recommend | Prioritized fix list | ~8-12s | | pulsetel_guidance | Reasoning assistance with decision tree | ~8s | | pulsetel_trends | Trend direction, delta, velocity | <1s | | pulsetel_anomalies | Statistical anomaly detection | <1s | | pulsetel_diff | Change intelligence with risk assessment | ~1s | | pulsetel_status | Cached health ping (no API calls) | <10ms | | pulsetel_telemetry | OpenTelemetry export status | <1s | | pulsetel_sentry | Sentry error tracking | ~2s | | pulsetel_ci | CI status + flakiness | ~2s | | pulsetel_health | Endpoint health + latency | ~2s | | pulsetel_deps | Vulnerability + outdated check | ~4s |

Every response includes actionable, severity, confidence, and context — no interpretation required.

Correlation Example

pulsetel correlate --json
{
  "schema_version": "1.0.0",
  "correlations": [
    {
      "pattern": "dependency_cascade",
      "confidence": 0.88,
      "severity": "critical",
      "signals": ["deps", "ci", "coverage"],
      "summary": "2 new deps + 3 outdated → CI failing → coverage dropped 8%",
      "causal_chain": "dependency_update → breaking_api_change → test_failures → ci_degraded + coverage_drop",
      "actionable": "Pin recently added dependencies and check changelogs for breaking changes. The coverage drop suggests tests are failing, not missing.",
      "blast_radius": "CI reliability, deployment pipeline, team velocity",
      "estimated_fix_time": "15-30 min"
    }
  ],
  "ship_decision": {
    "decision": "block",
    "reason": "2 critical correlation(s) detected — resolve before shipping",
    "confidence": 0.85,
    "blocking_issues": [
      "2 new deps + 3 outdated → CI failing → coverage dropped 8%"
    ],
    "proceed_if": "Resolve all critical correlations and re-run pulsetel_correlate"
  }
}

What PulseTel Checks

| Signal | What It Checks | Why It Matters | |--------|---------------|----------------| | CI | GitHub Actions status, flakiness | Don't commit on red | | Dependencies | Vulnerabilities, outdated packages | Critical vulns block deploys | | Coverage | Test coverage vs threshold | Catch regressions before merge | | Git | Branch status, uncommitted changes, divergence | Know the state before acting | | Health | Endpoint availability, latency | Production health at a glance | | Issues | Open issue counts and trends | Stale issues signal neglect | | PRs | Open pull requests | Merge conflicts and review debt | | Deploy | Recent deployment status | Know what's live | | Sentry | Error tracking, unresolved issues | Runtime health |

Every check returns a single schema: {status, message, details, severity, confidence, actionable}. Apples to apples, every time.

The Opinion

PulseTel refuses to be a monitoring dashboard. It's a correlation engine that gives you:

  1. Causal chains — not just "things are bad" but why they're bad
  2. Ship decisions — proceed, caution, or block with one reason
  3. Cross-signal intelligence — patterns no individual check can detect
  4. Structured data agents can act on — not prose for humans to interpret

If you want dashboards, use Grafana. If you want an agent to know why CI is failing and whether it's safe to ship, use PulseTel.

Delta Mode

pulsetel diff --delta --threshold 5

Returns only significant changes with risk assessment. ~90% smaller than full check output — designed for token-efficient agent consumption.

Schema

Versioned data contract. See SCHEMA.md:

{
  "schema_version": "1.0.0",
  "correlations": [
    {
      "pattern": "security_scan_gap",
      "confidence": 0.92,
      "severity": "critical",
      "causal_chain": "no_security_scan_in_ci → vulnerabilities_ship_to_production",
      "actionable": "Add 'npm audit --audit-level=high' to CI pipeline"
    }
  ],
  "ship_decision": {
    "decision": "block",
    "confidence": 0.85
  }
}

Security

  • SSRF protection with blocked IP ranges (loopback, RFC1918, cloud metadata)
  • DNS rebinding prevention with pinned TLS connections
  • Timing-safe API key comparison
  • Guard command allowlist (no shell metacharacters, no absolute paths)
  • Atomic file writes (write-to-temp-then-rename)

See SECURITY.md for full details.

Documentation

License

Apache 2.0