Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ“Š Monitoring
  3. Hyperping
H
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:25:49 PM

Hyperping

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Uptime, API and server monitoring with outages, reporting, on-call and status pages.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "hyperping": {
      "command": "npx",
      "args": [
        "-y",
        "hyperping"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ“Š More in Monitoring

Documentation Overview

Hyperping MCP Server

Official Model Context Protocol server for Hyperping. It exposes uptime monitoring, incident history, on-call schedules and reporting to AI agents over HTTP.

This is a remote server. There is nothing to install or self-host: point your client at the endpoint with an API key. This repository holds the registry manifest, the client configuration and the tool reference.

Full documentation: hyperping.com/docs/mcp

Endpoint

URLhttps://api.hyperping.io/v1/mcp
TransportStreamable HTTP, JSON-RPC 2.0
AuthBearer token
ScopeOne project per key
Tools26 (22 read, 4 write)

Quick start

  1. In Hyperping, go to Project Settings, API Keys and create a read_only or read_write key.
  2. Add the server to your MCP client (see below).
  3. Restart the client, then ask it things like "what is down right now?" or "what was our uptime on the API monitor last month?"

Claude Desktop, Claude Code, Cursor, Windsurf

config.json
{
  "mcpServers": {
    "hyperping": {
      "type": "http",
      "url": "https://api.hyperping.io/v1/mcp",
      "headers": {
        "Authorization": "Bearer sk_..."
      }
    }
  }
}

stdio clients

Clients that only speak stdio can bridge through mcp-remote:

config.json
{
  "mcpServers": {
    "hyperping": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://api.hyperping.io/v1/mcp",
        "--header",
        "Authorization: Bearer sk_..."
      ]
    }
  }
}

Tools

Monitors

ToolScopeDescription
list_monitorsreadPaginated monitors, filterable by up, down, paused, ssl_expiring.
get_monitorreadOne monitor by UUID.
search_monitors_by_namereadCase-insensitive substring search over names and URLs.
create_monitorwriteCreate an HTTP, ICMP, port or DNS monitor.
update_monitorwritePatch a monitor. Unspecified fields are preserved.
pause_monitorwriteStop checks and alerts for a monitor.
resume_monitorwriteResume a paused monitor.

delete_monitor is deliberately not exposed. Use the dashboard or the REST API.

Status and outages

ToolScopeDescription
get_status_summaryreadUp, down and paused counts, plus what is currently down and since when.
list_outagesreadPaginated outages, filterable by status, type or search term.
get_outagereadOne outage, with acknowledgements, description and root cause.
get_outage_timelinereadDetection, cross-region verification, alert dispatch, acknowledgement, resolution.
get_monitor_outagesreadOutages scoped to a single monitor.

Reporting

ToolScopeDescription
get_monitor_uptimereadUptime percentage over a window, by hour, day, week or month.
get_monitor_response_timereadLatency trend over a window.
get_monitor_mttrreadMean time to resolve, in seconds.
get_monitor_mttareadMean time to acknowledge, in seconds.

Diagnostics

ToolScopeDescription
get_monitor_anomaliesreadFlapping, latency spikes and other detected anomalies.
get_monitor_http_logsreadRecent HTTP probe logs, filterable by level.
list_recent_alertsreadUp and down notifications over a date range.

On-call

ToolScopeDescription
list_on_call_schedulesreadAll schedules, with rotation config and current on-call.
get_on_call_schedulereadOne schedule, with full rotation detail and linked policies.
list_escalation_policiesreadAll escalation policies in the project.
get_escalation_policyreadOne policy, with step sequence, schedules and contact channels.
list_team_membersreadProject users, to resolve IDs coming from schedules and policies.

To answer "who is on call for monitor X?", chain get_monitor, get_escalation_policy, get_on_call_schedule, list_team_members.

Integrations

ToolScopeDescription
list_integrationsreadSlack, Telegram, Discord, PagerDuty, OpsGenie, Teams, webhook and others.
get_integrationreadOne integration, with its channel-specific config.

Rate limits

Limits apply per project, and both windows are enforced.

MethodPer minutePer hour
initialize520
tools/list30200
tools/call60600

Open the session once and reuse it rather than calling initialize per request. Exceeding a limit returns a JSON-RPC error with a retry_after_seconds hint.

Machine-readable spec

For a dense, agent-friendly spec covering tools, query patterns and response shapes, point your client at hyperping.com/mcp/llms.txt.

Support

Open an issue here, or reach the team through hyperping.com/contact/sales.

License

MIT for the contents of this repository. Use of the hosted service is governed by the Hyperping terms and privacy policy.

Related MCP Servers

View all in Monitoring View all alternatives
  • M
    Mcp Server

    Vantaj uptime monitoring via MCP - manage monitors, heartbeats, incidents, and status pages.

    πŸ“Š Monitoring0 views
    Compare vs Mcp Server β†’
  • M
    Mcp

    Independent monitoring: status, monitors, and incidents from your StackWitness workspace.

    πŸ“Š Monitoring0 views
    Compare vs Mcp β†’
  • S
    Safeship

    API monitoring from your editor. Checks the JSON your endpoints return, not just the status code.

    πŸ“Š Monitoring0 views
    Compare vs Safeship β†’
  • Dynatrace Mcp logoDynatrace Mcp

    Leverage AI-driven observability, security, and automation to analyze anomalies, logs, traces, events, metrics.

    πŸ“Š Monitoring2 views
    Compare vs Dynatrace Mcp β†’

Frequently Asked Questions about Hyperping

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "hyperping": { "command": "npx", "args": ["-y", "hyperping"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewHyperping AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/hyperping?style=directory)](https://allmcps.com/mcp/hyperping)
HTML Embed
<a href="https://allmcps.com/mcp/hyperping"><img src="https://allmcps.com/api/badge/hyperping?style=directory" alt="Hyperping on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ“ŠMonitoring
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/5 checks healthy over the last 7h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ“Š Monitoring β†’Best MCP servers for Monitoring & Observability β†’Alternatives to Hyperping β†’Install in Claude DesktopInstall in CursorInstall in VS Code