Developers

MonitoraWeb in your AI assistant

The MCP server connects your account to Claude or any client that speaks Model Context Protocol. It asks the same public API v1 with your own token: it can do exactly what you can do with curl, no more.

Install

npm install -g https://app.monitoraweb.com/mcp/monitoraweb-mcp.tgz

Or nothing at all: the configuration below runs it with npx.

Configure

The token is in the panel, under Account → API. Paste this into claude_desktop_config.json (Claude Desktop) or .mcp.json (Claude Code):

{
  "mcpServers": {
    "monitoraweb": {
      "command": "npx",
      "args": ["-y", "https://app.monitoraweb.com/mcp/monitoraweb-mcp.tgz"],
      "env": {
        "MONITORAWEB_TOKEN": "your-token"
      }
    }
  }
}
VariableWhat it is forDefault
MONITORAWEB_TOKENYour API token. Required.
MONITORAWEB_APIAPI base URL.https://api.monitoraweb.com/v1
MONITORAWEB_READONLYSet to 1 and only the read tools exist: the assistant cannot change anything.off

Tools

ToolWhat it doesType
list_monitorsLists the monitors with their current status; searches by name or URL.read
get_monitorOne monitor by id, with everything it knows about it.read
list_incidentsIncidents of the account, or of one monitor.read
get_monitor_statsDaily series: checks, average response time, incidents or minutes down.read
domain_lookupWHOIS/RDAP of a domain: registrar, expiry, name servers, transfer lock.read
create_monitorCreates a monitor: a URL over HTTP, a DNS record, a UDP service, a TCP port, a ping or an API.write
pause_monitorPauses a monitor: no checks, no alerts.write
resume_monitorResumes a paused monitor.write

Ask it things like

  • Which of my clients are down right now?
  • How many domains expire in less than 30 days?
  • Pause the shop monitor while we do the maintenance.
  • Which monitor was slowest last week?

Security

  • The token stays on your computer, in the client configuration. We never see it leave your machine except as a normal API call.
  • The server adds no endpoint: it is a thin client over the documented API v1.
  • With MONITORAWEB_READONLY=1 the assistant can read but not create, pause or change anything.
  • If a token leaks, change it in Account → API: the old one stops working immediately.

Back to the API documentation