create-ping-monitor

create-ping-monitor is a skill for Claude Code from uptimerobot/ai. It costs 29 tokens per session (587 once invoked), scanned A, original, MIT.

A network monitor that sends ICMP echo requests, commonly called ping, to a hostname or IP address and alerts when it times out or loses packets.

In plain words
What is it for?
Use it to monitor servers, gateways, VPN endpoints, DNS addresses, or other hosts for basic network reachability, with optional timing, IP-version, alert, tag, and maintenance settings.
Why use it?
It checks whether a host is reachable without depending on a website, HTTP response, or page content.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the uptimerobot plugin — 24 skills, 1 MCP server shipped together

Good fit Use it to monitor servers, gateways, VPN endpoints, DNS addresses, or other hosts for basic network reachability, with optional timing, IP-version, alert, tag, and maintenance settings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/uptimerobot/ai/create-ping-monitor
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add uptimerobot/ai --skill create-ping-monitor
Clone the repo
git clone --depth 1 https://github.com/uptimerobot/ai

Made for: Claude Code.

Or install uptimerobot, the plugin that ships this one along with the rest of its 24 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for create-ping-monitor

README.md
[![agentmods](https://agentmods.dev/badge/skills/uptimerobot/ai/create-ping-monitor/github.svg)](https://agentmods.dev/skills/uptimerobot/ai/create-ping-monitor)
Your own site
<a href="https://agentmods.dev/skills/uptimerobot/ai/create-ping-monitor"><img src="https://agentmods.dev/badge/skills/uptimerobot/ai/create-ping-monitor/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for create-ping-monitor

Your own site · 80×15
<a href="https://agentmods.dev/skills/uptimerobot/ai/create-ping-monitor"><img src="https://agentmods.dev/badge/skills/uptimerobot/ai/create-ping-monitor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 587 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00029 $0.00587
Opus 5 $0.00015 $0.00293
Sonnet 5 $0.00006 $0.00117
Haiku 4.5 $0.00003 $0.00059

Measured 12d ago against content hash 2cb19b8d3acd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

create-ping-monitor scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/create-ping-monitor/SKILL.md · 68 lines

How it starts

The opening of the file, as written. The whole thing — 68 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Create a PING monitor

Preflight — read first. If you cannot see any uptimerobot:* MCP tools in your tool list, invoke the uptimerobot:setup skill before doing anything else. Do not tell the user the MCP is misconfigured — setup's Step 0 detects the common case (server connected, tools loaded after session start) and resolves it without re-keying.

Use when the user wants basic network reachability for a host. PING does not care about HTTP status or content — it just checks whether the host responds to ICMP within the timeout.

Tool: create-monitor Required params: friendlyName, type: "PING", url (hostname or IP, no scheme).

Minimal call

{
  "friendlyName": "Office gateway",
  "type": "PING",
  "url": "gw.example.com"
}

IP addresses work too:

{
  "friendlyName": "VPN endpoint",
  "type": "PING",
  "url": "203.0.113.42"
}

Common optional params

  • interval, timeout, responseTimeThreshold, assignedAlertContacts, tagNames, maintenanceWindowsIds — same as HTTP.
  • config.ipVersion — force IPv4 or IPv6. Defaults to auto.

Example with IPv6

{
  "friendlyName": "Public DNS v6",
  "type": "PING",
  "url": "2001:4860:4860::8888",
  "config": { "ipVersion": "IPv6" },
  "interval": 120
}

Common mistakes

  • Passing https://host.example.com — PING requires a bare hostname or IP. Strip the scheme and path.
  • Expecting content or status code checks — PING cannot do those. Use HTTP / KEYWORD / API instead.
  • Hostname must resolve publicly. Internal-only hostnames will always be down; use a reachable public name or a public IP.
  • Some networks block ICMP. If the host is actually up but ICMP is filtered, consider a PORT monitor on a known open TCP port instead.

After creation

Call get-monitor-details to confirm.

  • create-port-monitor — when ICMP is blocked but a TCP port is open.
  • create-http-monitor — when the user has an HTTP(S) URL, not a bare host.

Read the full file on GitHub · 68 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 68 lines · 29 tokens per session scan A 2cb19b8d3acd

Subscribe to this mod's changes

create-ping-monitor is a skill published in the GitHub repository uptimerobot/ai (24 stars, last pushed 29d ago), licensed MIT. It adds 29 tokens to every session and 587 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

BytesAgain Monitor — Advanced Uptime & Performance Auditor

A website checker that measures whether sites respond, which HTTP status codes they return, and how long they take to respond. HTTP status codes are server replies such as 200 for success or 404 for a missing page.

bytesagain/ai-skills · 54 tokens

aws-cloud-monitoring

AWS CloudWatch monitoring — metrics, alarms, log queries, VPC flow log analysis, network performance. Use when checking AWS alarms, analyzing VPC flow logs, investigating network latency, or monitoring VPN and NAT Gateway metrics.

automateyournetwork/netclaw · 50 tokens

applicationinsights-setup

Sets up, migrates, or enhances Azure Monitor Application Insights in .NET applications. Detects application type and existing instrumentation automatically. Use when adding Application Insights, Azure Monitor, observability, or telemetry to ASP.NET Core, Worker Service, ASP.NET Classic, or Console apps, upgrading from…

microsoft/ApplicationInsights-dotnet · 103 tokens

aws-collector-tool

AWS infrastructure collector. Fetches ECS status, CloudWatch logs, and metrics. Use when: checking ECS health, inspecting CloudWatch error logs, pulling infra metrics, or monitoring AWS resources.

xuiltul/animaworks · 43 tokens

monitoring

Use when setting up uptime and health monitoring, alerts, or on-call basics for a service already in production, so you learn it is down before customers do — health and readiness probes, alerting on SLO error-budget burn rather than raw counts, curing alert fatigue, on-call rotation with escalation, and a status…

ericrisco/rsc-harness · 88 tokens

huawei-cloud-flexus-l-server-manage

A Huawei Cloud tool for managing the subscription lifecycle of Flexus L lightweight servers. It can show available regions, images, and specifications, and handle creation, renewal, and cancellation.

huaweicloud/huaweicloud-skills · 80 tokens