Connect AI assistants to your IonHour uptime monitoring workspace using the Model Context Protocol.
# Option 1: Interactive login (recommended)
npx @ionhour/mcp-server login
# Option 2: Set your API key manually
export IONHOUR_API_KEY=ionh_your_key_here
# Run the MCP server
npx @ionhour/mcp-servernpx -y @smithery/cli install @ionhour/mcp-server --client claudeclaude mcp add ionhour -- npx @ionhour/mcp-serverAdd to your claude_desktop_config.json:
{
"mcpServers": {
"ionhour": {
"command": "npx",
"args": ["@ionhour/mcp-server"],
"env": {
"IONHOUR_API_KEY": "ionh_your_key_here"
}
}
}
}Add to your .cursor/mcp.json:
{
"mcpServers": {
"ionhour": {
"command": "npx",
"args": ["@ionhour/mcp-server"],
"env": {
"IONHOUR_API_KEY": "ionh_your_key_here"
}
}
}
}Add to your .vscode/mcp.json:
{
"servers": {
"ionhour": {
"command": "npx",
"args": ["@ionhour/mcp-server"],
"env": {
"IONHOUR_API_KEY": "ionh_your_key_here"
}
}
}
}Add to your ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"ionhour": {
"command": "npx",
"args": ["@ionhour/mcp-server"],
"env": {
"IONHOUR_API_KEY": "ionh_your_key_here"
}
}
}
}- Go to your IonHour workspace Settings > API Keys
- Create a new key with Read & Write or Read Only permission
- Copy the key (starts with
ionh_)
get_workspace- Get workspace detailswhoami- Get API key info (workspace, user, permission level)get_workspace_summary- Overview of projects, checks by status, and active incidentsget_workspace_reliability- Uptime, incident count, and MTTR over N dayslist_team_members- List workspace members and rolessend_invitation- Invite users to the workspace
list_projects/create_project/update_project
register_check- Create a monitoring check (accepts human-readable intervals like "every 5 minutes" or "hourly")list_checks/list_checks_by_status/find_check_by_nameget_check_status- Detailed status with recent signalsget_check_uptime- Uptime percentage with daily bucketspause_check/resume_checkdelete_check- Permanently delete a check and its data
send_heartbeat- Send a success signalsend_failure_signal- Report a failurelist_signals- View signal history
list_incidents/search_incidents/get_incidentget_incident_timeline- Incident history for a checkcreate_incident/acknowledge_incident/resolve_incidentadd_incident_note
create_deployment- Start a deployment window (auto-pauses checks)end_deployment- End deployment and resume checkslist_deployments
list_dependencies/get_dependency/create_dependencyupdate_dependency_statusdelete_dependency- Delete a dependency
list_status_pages/create_status_page/update_status_pagecreate_announcement- Post a status update
list_alert_channels/create_alert_channel/update_alert_channeldelete_alert_channel- Delete a notification channel
list_escalation_rules/create_escalation_rule/update_escalation_ruledelete_escalation_rule- Delete an escalation rule
The server exposes reference data that AI assistants can browse without calling tools:
| URI | Description |
|---|---|
ionhour://enums |
All IonHour enums (check statuses, incident states, severities, etc.) |
ionhour://checks/schema |
Check creation schema with field constraints and status lifecycle |
ionhour://help/ping-formats |
Heartbeat integration examples (curl, Node, Python, cron, CI/CD) |
ionhour://tools/catalog |
Catalog of all tools organized by domain with descriptions |
ionhour://guides/workflows |
Common workflow patterns and best practices |
Pre-built workflow templates that guide AI assistants through multi-step operations:
| Prompt | Args | Description |
|---|---|---|
diagnose_incident |
incidentId |
Step-by-step incident investigation |
setup_monitoring |
serviceName |
Guided new-service monitoring setup |
deployment_checklist |
projectId |
Pre/during/post-deploy workflow |
weekly_reliability_report |
daysBack? |
Generate a reliability summary |
triage_all_incidents |
— | List and triage all active incidents |
status_page_incident |
incidentId |
Communicate an incident through status pages |
dependency_health_audit |
— | Audit all dependencies and assess health impact |
npx @ionhour/mcp-server [command] [options]
Commands:
(default) Start the MCP server
login Authenticate via browser and store API key
logout Remove stored credentials
whoami Show current authentication status
Options:
--api-key KEY IonHour API key (or set IONHOUR_API_KEY env var)
--base-url URL MCP base URL (default: https://mcp.ionhour.com)
--version, -v Show version
--help, -h Show help
Opens your browser to authenticate with IonHour, then automatically creates and stores an API key:
npx @ionhour/mcp-server loginCredentials are stored at ~/.config/ionhour/credentials.json (file permissions: 600).
After login, you can run the MCP server without setting IONHOUR_API_KEY.
This package runs a local MCP server over stdio that proxies requests to the IonHour API. Your AI assistant communicates with this local server, which forwards tool calls to your IonHour workspace.
AI Assistant <--stdio--> @ionhour/mcp-server <--HTTPS--> IonHour API
- MCP Integration Guide — Full setup, architecture, and complete tool reference with parameters
- MCP Prompts & Workflows — Prompt documentation, project rules, and best practices
- Node.js >= 18
- An IonHour account with an API key
MIT