Visual Sentinel MCP Server
OfficialVisual Sentinel MCP Server
Model Context Protocol server for Visual Sentinel, the six-layer website monitoring platform: uptime, performance, SSL, DNS, visual regression, and content change detection.
Connect Claude Desktop, Claude Code, Cline, Continue, or any MCP-compatible client to your Visual Sentinel account so an AI assistant can list monitors, create them, fetch incident history, run free DNS / SSL / speed checks, and acknowledge alerts on your behalf.
npm:
@visualsentinel/mcp-serverOpenAPI spec: https://github.com/VisualSentinel/openapi
Get an API key: https://visualsentinel.com/settings/api-keys
Hosted API reference: https://visualsentinel.com/docs
What you get
16 tools spanning the public Visual Sentinel API:
Public tools (no API key required)
Tool | Endpoint | Purpose |
|
| Service health probe |
|
| Resolve A / AAAA / MX / NS / TXT / CNAME / SOA records |
|
| Inspect TLS certificate (issuer, validity, SAN list, chain) |
|
| One-shot performance check (TTFB, total load, transfer size) |
|
| Quick HTTP health check |
Authenticated tools (require VS_API_KEY)
Tool | Endpoint | Purpose |
|
| List monitors with optional status / type filters |
|
| Fetch a single monitor with current status |
|
| Create a new monitor |
|
| Trigger an immediate check |
|
| Uptime percentage over 24h / 7d / 30d / 90d / 365d |
|
| List incidents, filterable by status or monitor |
|
| Fetch an incident with full check history |
|
| List alerts by status |
|
| Acknowledge an alert |
|
| List your public status pages |
|
| List registered origin servers |
Installation
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"visualsentinel": {
"command": "npx",
"args": ["-y", "@visualsentinel/mcp-server"],
"env": {
"VS_API_KEY": "vs_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}
}
}Restart Claude Desktop. The 16 tools appear under the tools menu.
Claude Code (CLI)
claude mcp add visualsentinel \
-- npx -y @visualsentinel/mcp-serverThen export VS_API_KEY in the shell where Claude Code runs.
Cline (VS Code extension)
In Cline's MCP settings, add:
{
"visualsentinel": {
"command": "npx",
"args": ["-y", "@visualsentinel/mcp-server"],
"env": { "VS_API_KEY": "vs_live_..." }
}
}Continue
In ~/.continue/config.json:
{
"mcpServers": [
{
"name": "visualsentinel",
"command": "npx",
"args": ["-y", "@visualsentinel/mcp-server"],
"env": { "VS_API_KEY": "vs_live_..." }
}
]
}Generic MCP client (stdio)
VS_API_KEY=vs_live_xxx npx -y @visualsentinel/mcp-serverThe server speaks JSON-RPC over stdio per the MCP specification (2025-06-18).
Configuration
Two environment variables, both optional except in the noted cases:
Variable | Default | Purpose |
| (none) | Required for the 11 authenticated tools. Public tools work without it. Generate at https://visualsentinel.com/settings/api-keys. |
|
| Override only for testing against a local development instance. |
If a tool that needs auth is called without VS_API_KEY, the server returns a clear error rather than silently failing.
VISUALSENTINEL_API_KEY is accepted as an alias for VS_API_KEY for clients that prefer the longer name.
Usage examples
After installation, ask the AI assistant things like:
"What's the SSL certificate situation on visualsentinel.com? When does it expire?"
"List my Visual Sentinel monitors that are currently down."
"Add a new HTTPS monitor for https://shop.example.com checking every minute."
"Show me incidents from the last 24 hours and acknowledge the ones for monitor-id
clm123.""What's the uptime percentage for my landing page over the last 30 days?"
"Run a speed test on https://example.com/checkout."
The assistant chooses the appropriate tool, fills in arguments from the conversation, and shows the JSON response.
Security notes
Your API key never leaves the machine running this MCP server. Requests go directly to
https://visualsentinel.comover HTTPS.Public tools (
vs_health,vs_dns_check,vs_ssl_check,vs_speed_test,vs_website_check) work without an API key, but their results are visible to anyone who can read your conversation logs. Treat them like any other shell-out.Revoke a leaked API key immediately at https://visualsentinel.com/settings/api-keys. Revocation takes effect within seconds.
Tools that mutate state (
vs_monitors_create,vs_monitors_check_now,vs_alerts_acknowledge) inherit your API key's role-based permissions. A read-only key cannot create monitors.
Development
git clone https://github.com/VisualSentinel/mcp-server.git
cd mcp-server
npm install
npm run build # tsup, output to dist/
npm run lint # tsc --noEmit
npm run dev # tsup --watchTo smoke-test locally against the production API:
VS_API_KEY=vs_live_... node dist/index.jsThe server speaks JSON-RPC on stdin / stdout. Pipe in a tools/list request to see the registered tools.
Versioning
Semantic versioning. Breaking changes to tool names or required arguments get a major bump. Adding new tools or new optional arguments is a minor or patch.
The server's tool surface tracks the public Visual Sentinel API spec at https://github.com/VisualSentinel/openapi. When the upstream API gains a useful endpoint, this repository typically catches up within a release.
License
MIT. See LICENSE.
The Visual Sentinel API service itself is governed by https://visualsentinel.com/terms.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/VisualSentinel/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server