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

@internet-telemetry/mcp-server

v1.0.0

Published

MCP server for Internet Telemetry - query real-time internet outages, network reachability, and speed test data with AI assistants like Claude

Readme

Internet Telemetry MCP Server

npm version License: MIT

A Model Context Protocol (MCP) server that enables AI assistants like Claude to query real-time internet outage data, network reachability, and speed test results.

Features

  • Real-time Outage Data: Query internet outages from multiple sources (ODIN, Cloudflare Radar, NWS, Cal OES)
  • Network Reachability: Check the status of major DNS providers and network endpoints
  • Speed Test History: Access your speed test results and trends
  • Natural Language Queries: Ask Claude about outages in plain English

Installation

npm install -g @internet-telemetry/mcp-server

Quick Start

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "internet-telemetry": {
      "command": "npx",
      "args": ["-y", "@internet-telemetry/mcp-server"]
    }
  }
}

Claude Code

Add to .mcp.json in your project or ~/.claude/mcp.json globally:

{
  "mcpServers": {
    "internet-telemetry": {
      "command": "npx",
      "args": ["-y", "@internet-telemetry/mcp-server"]
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | get_incidents | Get recent internet outages and incidents | | search_incidents | Search incidents by keyword | | get_outages | Get unified outage data with ISP attribution | | search_outages | Search outages by keyword | | get_reachability | Check network reachability for monitored targets | | get_speedtest_history | Get your speed test history | | get_speedtest_info | Get speed test server and connection info |

Example Usage

Once configured, you can ask Claude:

  • "Are there any internet outages in California right now?"
  • "What's the reachability status of Google DNS?"
  • "Show me incidents affecting Comcast in the last 24 hours"
  • "How has my internet speed been trending this week?"

Tool Details

get_incidents

Parameters:
  - hours: number (default: 24, max: 168)
  - source: "odin" | "radar" | "nws" | "caloes"
  - state: US state code (e.g., "CA")
  - min_severity: 1-5

search_incidents

Parameters:
  - query: string (required)
  - hours: number (default: 24)
  - limit: number (default: 50)

get_outages

Parameters:
  - hours: number (default: 24)
  - isp: ISP name filter
  - state: US state code
  - active_only: boolean

get_reachability

Parameters:
  - target: string (e.g., "cloudflare-dns", "google-dns")
  - hours: number (default: 1)

get_speedtest_history

Parameters:
  - limit: number (default: 20, max: 100)

Resources

The server also provides MCP resources:

  • ods://schema/incident - JSON schema for incident objects
  • ods://info/data-sources - Available data sources and update frequencies

Prompts

Pre-built prompts for common tasks:

  • analyze_outage - Detailed analysis of a specific outage
  • summarize_incidents - Summary of recent incidents

Development

# Clone the repository
git clone https://github.com/internet-telemetry/outage-detection-system.git
cd outage-detection-system/packages/mcp-server

# Install dependencies
npm install

# Build
npm run build

# Run in development mode
npm run dev

API

This MCP server connects to the Internet Telemetry API at https://ods-api.m-8b1.workers.dev. For direct API access, see the API documentation.

Requirements

  • Node.js 18+
  • A compatible MCP client (Claude Desktop, Claude Code, or other MCP-enabled applications)

License

MIT

Links