Labsco
designmodo logo

Pulsetic MCP Server

β˜… 2

from designmodo

The Pulsetic MCP Server connects Pulsetic monitoring with AI agents and MCP-compatible tools, enabling direct access to uptime data, cron monitoring results, incident management workflows, and status page information through the Model Context Protocol (MCP). It allows teams to securely expose operational monitoring data in a structured format, making it easy to build AI-driven automation, monitoring assistants, and intelligent operational workflows without custom middleware.

πŸ”₯πŸ”₯πŸ”₯βœ“ VerifiedAccount requiredNeeds API keys

Pulsetic MCP Server

Connect AI assistants to your Pulsetic monitoring platform using the Model Context Protocol (MCP).


What is MCP?

The Model Context Protocol is an open standard that allows AI assistants to interact with external tools and services. With Pulsetic's MCP server, you can ask your AI assistant to check monitor status, create incidents, schedule maintenance, and more β€” all through natural conversation.

Supported clients:


Available Tools

The MCP server exposes 17 tools organized into four categories.

Monitors

ToolDescription
list_monitorsList all monitors with status, uptime, and response time.
get_monitorGet detailed info about a specific monitor.
get_monitor_statsUptime %, downtime, and response times across 1d/7d/30d/90d.
get_monitor_eventsOnline/offline events within a date range.
get_monitor_downtimeTotal downtime in seconds for a given period.
create_monitorCreate a new HTTP, TCP, or ICMP monitor.
update_monitorUpdate a monitor's name, URL, frequency, or settings.
delete_monitorPermanently delete a monitor.
pause_monitorPause monitoring (stop checks).
resume_monitorResume a paused monitor.

Status Pages

ToolDescription
list_status_pagesList all status pages with title, slug, and domain.

Incidents

ToolDescription
list_incidentsList incidents for a status page.
create_incidentCreate a new incident with an initial status update.
update_incidentPost a status update to an existing incident.
resolve_incidentMark an incident as resolved.

Maintenance

ToolDescription
create_maintenanceSchedule a maintenance window on a status page.
delete_maintenanceDelete a scheduled maintenance window.

Testing with cURL

You can test the MCP endpoint directly with cURL to verify your API key works.

Initialize

curl -X POST https://api.pulsetic.com/mcp \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "initialize",
    "params": {
      "protocolVersion": "2025-03-26",
      "capabilities": {},
      "clientInfo": {"name": "curl", "version": "1.0"}
    }
  }'

List tools

curl -X POST https://api.pulsetic.com/mcp \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/list"}'

Call a tool

curl -X POST https://api.pulsetic.com/mcp \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 3,
    "method": "tools/call",
    "params": {
      "name": "list_monitors",
      "arguments": {}
    }
  }'

Tool Reference

list_monitors

Returns all monitors for your account.

No parameters.


get_monitor

Returns full details for a single monitor, including SSL certificate info.

ParameterTypeRequiredDescription
monitor_idintegerYesThe monitor ID.

get_monitor_stats

Returns uptime %, downtime, incident count, and average response time across 1-day, 7-day, 30-day, and 90-day periods.

ParameterTypeRequiredDescription
monitor_idintegerYesThe monitor ID.

get_monitor_events

Returns online/offline events in a date range (max 100, newest first).

ParameterTypeRequiredDescription
monitor_idintegerYesThe monitor ID.
fromstringNoStart date (YYYY-MM-DD). Default: 7 days ago.
tostringNoEnd date (YYYY-MM-DD). Default: today.

get_monitor_downtime

Returns total downtime in seconds and incident count for a period.

ParameterTypeRequiredDescription
monitor_idintegerYesThe monitor ID.
daysintegerNoDays to look back. Default: 30.

create_monitor

Creates a new uptime monitor.

ParameterTypeRequiredDescription
urlstringYesURL or hostname to monitor.
namestringNoDisplay name.
request_typestringNohttp, tcp, or icmp. Default: http.
uptime_check_frequencyintegerNoCheck interval in seconds. Default: 60.
request_methodstringNoHTTP method. Default: GET.
request_timeoutintegerNoTimeout in seconds. Default: 30.
ssl_checkbooleanNoEnable SSL monitoring.

update_monitor

Updates an existing monitor's settings. Only include the fields you want to change.

ParameterTypeRequiredDescription
monitor_idintegerYesThe monitor ID.
namestringNoNew display name.
urlstringNoNew URL or hostname.
uptime_check_frequencyintegerNoNew check interval in seconds.
request_methodstringNoHTTP method.
request_timeoutintegerNoTimeout in seconds.
ssl_checkbooleanNoEnable/disable SSL monitoring.

delete_monitor

Permanently deletes a monitor and all associated data.

ParameterTypeRequiredDescription
monitor_idintegerYesThe monitor ID.

pause_monitor

Pauses a monitor. It will stop being checked until resumed.

ParameterTypeRequiredDescription
monitor_idintegerYesThe monitor ID.

resume_monitor

Resumes a paused monitor.

ParameterTypeRequiredDescription
monitor_idintegerYesThe monitor ID.

list_status_pages

Returns all status pages for your account.

No parameters.


list_incidents

Returns incidents for a status page, including the latest update for each.

ParameterTypeRequiredDescription
status_page_idintegerYesThe status page ID.

create_incident

Creates a new incident with an initial status update that appears on the status page.

ParameterTypeRequiredDescription
status_page_idintegerYesThe status page ID.
titlestringYesIncident title.
statusstringYesinvestigating, identified, monitoring, or resolved.
messagestringYesInitial update message.

update_incident

Posts a new status update to an existing incident.

ParameterTypeRequiredDescription
incident_idintegerYesThe incident ID.
statusstringYesinvestigating, identified, monitoring, or resolved.
messagestringYesUpdate message.
titlestringNoUpdate the incident title.

resolve_incident

Marks an incident as resolved with a resolution message.

ParameterTypeRequiredDescription
incident_idintegerYesThe incident ID.
messagestringYesResolution message.

create_maintenance

Schedules a maintenance window on a status page.

ParameterTypeRequiredDescription
status_page_idintegerYesThe status page ID.
namestringYesMaintenance title.
descriptionstringNoDescription of the maintenance.
startstringYesStart time in ISO 8601 format.
endstringYesEnd time in ISO 8601 format.
timezonestringNoTimezone (e.g., UTC, America/New_York). Default: UTC.

delete_maintenance

Deletes a scheduled maintenance window.

ParameterTypeRequiredDescription
maintenance_idintegerYesThe maintenance window ID.

API Reference

The MCP server implements the MCP specification (2025-03-26) using Streamable HTTP transport over a single POST /mcp endpoint with JSON-RPC 2.0.