Skip to main content
ClaudeWave

Hosted MCP server for Sentinel uptime monitoring: connect Claude or any MCP client to your monitors, SSL/DNS/domain checks, and incidents

MCP ServersOfficial Registry1 stars0 forksUpdated today
ClaudeWave Trust Score
70/100
· OK
Passed
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Flags
  • !No standard license detected
Last scanned: 8/27/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/rootstuff/sentinel-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "sentinel-mcp": {
      "command": "node",
      "args": ["/path/to/sentinel-mcp/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/rootstuff/sentinel-mcp and follow its README for install instructions.
Use cases

MCP Servers overview

<p align="center">
  <img src="assets/logo.png" alt="Sentinel logo" width="90" height="90">
</p>

# Sentinel Monitoring MCP Server

Uptime, SSL, DNS and domain monitoring you can talk to: check, create and manage monitors for all your client sites from Claude, ChatGPT, or any MCP client.

Sentinel is uptime, SSL, DNS and domain-expiry monitoring built for agencies and freelancers managing client websites. This MCP server puts the whole product in your AI assistant: ask "which client SSL certificates expire this month?", "what was uptime across all sites in June?", or "add monitoring for newclient.com" in plain language. Tools cover creating, updating, pausing and deleting monitors, on-demand URL checks from every region, uptime summaries, incident management, DNS history, performance history, expiring-certificate reports, status pages, monitor groups, a team-members access review (roles, 2FA, last sign-in), and a needs-attention digest. Built by a solo founder who uses it daily instead of the dashboard.

<p align="center">
  <img src="assets/screenshot.png" alt="Sentinel dashboard: monitor stats and global check network" width="800">
</p>

This is a **hosted (remote) MCP server**; there is nothing to install or run. This repository is its public home: connection instructions, the registry manifest, and the [issue tracker](../../issues) for feedback from agent users.

- **Endpoint (API token / bearer):** `https://sentinel.rootstuff.io/mcp/sentinel`
- **Endpoint (OAuth 2.1):** `https://sentinel.rootstuff.io/mcp/sentinel-oauth`
- **Transport:** Streamable HTTP
- **Docs:** [sentinel.rootstuff.io/docs/mcp](https://sentinel.rootstuff.io/docs/mcp) · [Tool reference](https://sentinel.rootstuff.io/docs/mcp-tools)

## Connect

### Claude Code

```bash
claude mcp add --transport http sentinel https://sentinel.rootstuff.io/mcp/sentinel \
  --header "Authorization: Bearer YOUR_API_TOKEN"
```

Create an API token at [sentinel.rootstuff.io/user/api-tokens](https://sentinel.rootstuff.io/user/api-tokens).

### Claude Desktop

Add a custom connector (Settings → Connectors → Add custom connector) with the URL `https://sentinel.rootstuff.io/mcp/sentinel-oauth`, or use the bearer endpoint above in a JSON config:

```json
{
  "mcpServers": {
    "sentinel": {
      "type": "http",
      "url": "https://sentinel.rootstuff.io/mcp/sentinel",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}
```

### Claude.ai (web and mobile apps)

Add a custom connector with the URL `https://sentinel.rootstuff.io/mcp/sentinel-oauth`. The Claude.ai connector flow requires OAuth; you'll sign in to Sentinel and approve access, no token pasting needed. Supports OAuth 2.1 with dynamic client registration.

### ChatGPT and other MCP clients

Any client that speaks MCP over Streamable HTTP works. Use the OAuth endpoint for clients with a browser sign-in flow, or the bearer endpoint with an `Authorization: Bearer YOUR_API_TOKEN` header for headless and CLI clients.

## Tools (26)

**Monitoring reads** (any plan with API access):

| Tool | What it answers |
| --- | --- |
| `get-uptime-summary-tool` | "Is anything down right now?" |
| `get-attention-items-tool` | "What needs my attention this morning?" |
| `list-monitors-tool` / `get-monitor-tool` | Inspect monitors, filter and search |
| `list-incidents-tool` | Review outages and their timelines |
| `get-performance-history-tool` | Response-time trends per monitor |
| `get-dns-history-tool` | DNS record changes over time |
| `list-expiring-certificates-tool` | "Which SSL certificates expire soon?" |
| `list-status-pages-tool` | Public status pages in the team |
| `list-groups-tool` | Monitor groups (the dashboard's grouped view) |
| `list-team-members-tool` | Who has access: role, 2FA state, last sign-in |
| `check-url-tool` | On-demand check of any URL from every region |

**Monitor and incident management** (full API access):

| Tool | What it does |
| --- | --- |
| `create-monitor-tool` / `update-monitor-tool` / `delete-monitor-tool` | Manage monitors |
| `pause-monitor-tool` / `unpause-monitor-tool` | Pause checks during maintenance |
| `trigger-check-tool` | Re-check a monitor right now |
| `create-incident-tool` / `update-incident-tool` / `delete-incident-tool` | Manage incidents |
| `acknowledge-incident-tool` / `resolve-incident-tool` | Work an incident from chat |
| `create-group-tool` / `update-group-tool` / `delete-group-tool` | Organize monitors into groups |

## Example prompts

- "Which of my client sites had downtime this week?"
- "List SSL certificates expiring in the next 30 days."
- "Create a monitor for https://client-site.com and check it now."
- "Anything that needs my attention this morning?"
- "Check if example.com is up from every region."
- "Does everyone on my team have two-factor auth enabled?"

## Authentication and plans

- **API tokens** carry per-token permissions; write tools require the matching create, update, or delete permission on the token, and a refusal names the missing permission.
- **Plans:** read tools are available on any plan with API access (Starter and up). Write tools (create, update, delete, pause) require full API access (Pro or Business). See [pricing](https://sentinel.rootstuff.io/pricing).
- All access is scoped to the authenticated user's current team. Deletes are irreversible.

## About

Sentinel is a hosted service by [rootstuff](https://rootstuff.io); the server code is not open source. This repository exists so MCP directories, registries, and agent users have a public home for the server. Bug reports and tool requests are welcome in the [issues](../../issues).

- Product: [sentinel.rootstuff.io](https://sentinel.rootstuff.io)
- MCP feature page: [sentinel.rootstuff.io/mcp](https://sentinel.rootstuff.io/mcp)
- Full docs: [sentinel.rootstuff.io/docs/mcp](https://sentinel.rootstuff.io/docs/mcp)
- LLM-readable site index: [sentinel.rootstuff.io/llms.txt](https://sentinel.rootstuff.io/llms.txt)
ai-agentsclaudedns-monitoringmcpmcp-servermodel-context-protocolssl-monitoringuptime-monitoring

What people ask about sentinel-mcp

What is rootstuff/sentinel-mcp?

+

rootstuff/sentinel-mcp is mcp servers for the Claude AI ecosystem. Hosted MCP server for Sentinel uptime monitoring: connect Claude or any MCP client to your monitors, SSL/DNS/domain checks, and incidents It has 1 GitHub stars and its last recorded update is dated 2026-08-26.

How do I install sentinel-mcp?

+

You can install sentinel-mcp by cloning the repository (https://github.com/rootstuff/sentinel-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is rootstuff/sentinel-mcp safe to use?

+

Our security agent has analyzed rootstuff/sentinel-mcp and assigned a Trust Score of 70/100 (tier: OK). See the full breakdown of passed checks and flags on this page.

Who maintains rootstuff/sentinel-mcp?

+

rootstuff/sentinel-mcp is maintained by rootstuff. The last recorded GitHub activity is dated 2026-08-26, with 0 open issues.

Are there alternatives to sentinel-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy sentinel-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: rootstuff/sentinel-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/rootstuff-sentinel-mcp)](https://claudewave.com/repo/rootstuff-sentinel-mcp)
<a href="https://claudewave.com/repo/rootstuff-sentinel-mcp"><img src="https://claudewave.com/api/badge/rootstuff-sentinel-mcp" alt="Featured on ClaudeWave: rootstuff/sentinel-mcp" width="320" height="64" /></a>

More MCP Servers

sentinel-mcp alternatives