create-api-monitor

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

A skill for creating an uptime monitor that calls an HTTP endpoint and checks values in its JSON response or headers. It supports up to five checks combined so that all or any of them must pass.

In plain words
What is it for?
Use it to monitor health endpoints, verify JSON fields or response headers, and alert when the configured checks fail.
Why use it?
It catches an API that responds but returns incorrect data, which a simple status-code check may miss.

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 health endpoints, verify JSON fields or response headers, and alert when the configured checks fail.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/uptimerobot/ai/create-api-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-api-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-api-monitor

README.md
[![agentmods](https://agentmods.dev/badge/skills/uptimerobot/ai/create-api-monitor/github.svg)](https://agentmods.dev/skills/uptimerobot/ai/create-api-monitor)
Your own site
<a href="https://agentmods.dev/skills/uptimerobot/ai/create-api-monitor"><img src="https://agentmods.dev/badge/skills/uptimerobot/ai/create-api-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-api-monitor

Your own site · 80×15
<a href="https://agentmods.dev/skills/uptimerobot/ai/create-api-monitor"><img src="https://agentmods.dev/badge/skills/uptimerobot/ai/create-api-monitor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,030 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 warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 22
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 54
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00033 $0.01030
Opus 5 $0.00016 $0.00515
Sonnet 5 $0.00007 $0.00206
Haiku 4.5 $0.00003 $0.00103

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

Security

Grade A, and why

create-api-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-api-monitor/SKILL.md · 92 lines

How it starts

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

Create an API 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 needs to validate the content of an HTTP response — not just the status code, but specific JSON fields or header values. For simple "status 200" checks, use HTTP. For a single keyword in the body, use KEYWORD.

Tool: create-monitor Required params: friendlyName, type: "API", url (full URL), config.apiAssertions.

Minimal call

{
  "friendlyName": "Billing API healthy",
  "type": "API",
  "url": "https://api.example.com/health",
  "config": {
    "apiAssertions": {
      "logic": "AND",
      "checks": [
        { "property": "$.status", "comparison": "equals", "target": "ok" }
      ]
    }
  }
}

config.apiAssertions shape

  • logic"AND" (every check must pass) or "OR" (any check passing counts as up).
  • checks — 1 to 5 items. Each has:
    • property — JSONPath against the response body, or a header selector. Max 500 chars.
    • comparison — one of equals, not_equals, contains, not_contains, greater_than, less_than, is_null, is_not_null.
    • target — expected value. Type depends on the comparison (is_null / is_not_null take none). Strings, numbers, booleans, and null are all valid.

Common optional params

Everything HTTP monitors support: httpMethodType, authType, httpUsername, httpPassword, customHttpHeaders, postValueData, postValueType (KEY_VALUE / RAW_JSON), postContentType, successHttpResponseCodes, followRedirections, checkSSLErrors, timeout, interval, assignedAlertContacts, tagNames, maintenanceWindowsIds, responseTimeThreshold, sslExpirationReminder, domainExpirationReminder.

Read the full file on GitHub · 92 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 · 92 lines · 33 tokens per session scan A 5bd8432dd21f

Subscribe to this mod's changes

create-api-monitor is a skill published in the GitHub repository uptimerobot/ai (24 stars, last pushed 29d ago), licensed MIT. It adds 33 tokens to every session and 1,030 once invoked, about $0.0002 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

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

geoserver-rest-api

Use when automating GeoServer management — programmatic workspace, datastore, and layer creation, style upload, service configuration via REST API. GeoServer REST API: manage GeoServer without GUI using curl, Python, or any HTTP client.

znlgis/opengis-skills · 53 tokens

create-test-run

Create a Kobiton test run from a test case or suite, then offer to monitor it. When the user gives only partial details (or just a test case id), fill the rest with sensible defaults that match the createTestRun schema, show a summary of what will run, and ask to proceed or customize before creating. After the run is…

kobiton/automate · 207 tokens

xquik

Xquik X data automation API - Use REST or MCP for tweet search, user lookup, follower exports, media downloads, monitors, webhooks, giveaway draws, and confirmation-gated X actions.

bobmatnyc/claude-mpm-skills · 44 tokens

gitlab-merge-request-create

Open a new GitLab merge request against a project via the gitlab-api MCP server — from a source branch into a target branch, with title, description, assignees, reviewers, labels, and remove-source-branch/squash options. Use when the agent must create/open an MR for a project. Do NOT use to review, approve, or merge…

Knuckles-Team/gitlab-api · 111 tokens

cost-tracker

Track LLM API spend per session and task. Estimate token usage across providers. Warn before you blow your budget.

suryast/free-ai-agent-skills · 27 tokens