KosmoKrator

analytics

Pingdom CLI for AI Agents

Use the Pingdom CLI from KosmoKrator to call Pingdom tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Pingdom CLI Setup

Pingdom can be configured headlessly with `kosmokrator integrations:configure pingdom`.

Install, configure, and verify
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure pingdom --set api_key="$PINGDOM_API_KEY" --enable --read allow --write ask --json
kosmokrator integrations:doctor pingdom --json
kosmokrator integrations:status --json

Credentials

Authentication type: API key api_key. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

KeyEnv varTypeRequiredLabel
api_key PINGDOM_API_KEY Secret secret yes API Key
url PINGDOM_URL URL url no API Base URL

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call pingdom.pingdom_list_checks '{"limit":1,"offset":1,"status":"example_status","tags":"example_tags"}' --json
Provider shortcut
kosmo integrations:pingdom pingdom_list_checks '{"limit":1,"offset":1,"status":"example_status","tags":"example_tags"}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs pingdom --json
kosmo integrations:docs pingdom.pingdom_list_checks --json
kosmo integrations:schema pingdom.pingdom_list_checks --json
kosmo integrations:search "Pingdom" --json
kosmo integrations:list --json

Automation Contexts

The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.

CLI Functions

Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.

pingdom.pingdom_list_checks

List all uptime checks in Pingdom. Returns check IDs, names, hostnames, statuses, and last test times.

Read read
Parameters
limit, offset, status, tags
Generic call
kosmo integrations:call pingdom.pingdom_list_checks '{"limit":1,"offset":1,"status":"example_status","tags":"example_tags"}' --json
Shortcut
kosmo integrations:pingdom pingdom_list_checks '{"limit":1,"offset":1,"status":"example_status","tags":"example_tags"}' --json

pingdom.pingdom_get_check

Get detailed information about a specific Pingdom uptime check, including configuration, current status, and last test results.

Read read
Parameters
check_id
Generic call
kosmo integrations:call pingdom.pingdom_get_check '{"check_id":1}' --json
Shortcut
kosmo integrations:pingdom pingdom_get_check '{"check_id":1}' --json

pingdom.pingdom_create_check

Create a new uptime check in Pingdom. Supports HTTP, HTTPS, TCP, ping, DNS, UDP, SMTP, POP3, and IMAP check types.

Write write
Parameters
name, host, type, resolution, url, port, tags, send_string, expect_string, contactids
Generic call
kosmo integrations:call pingdom.pingdom_create_check '{"name":"example_name","host":"example_host","type":"example_type","resolution":1,"url":"example_url","port":1,"tags":"example_tags","send_string":"example_send_string"}' --json
Shortcut
kosmo integrations:pingdom pingdom_create_check '{"name":"example_name","host":"example_host","type":"example_type","resolution":1,"url":"example_url","port":1,"tags":"example_tags","send_string":"example_send_string"}' --json

pingdom.pingdom_list_results

List summary results for a Pingdom uptime check. Returns response times and status summaries.

Read read
Parameters
check_id, from, to, limit, offset
Generic call
kosmo integrations:call pingdom.pingdom_list_results '{"check_id":1,"from":1,"to":1,"limit":1,"offset":1}' --json
Shortcut
kosmo integrations:pingdom pingdom_list_results '{"check_id":1,"from":1,"to":1,"limit":1,"offset":1}' --json

pingdom.pingdom_get_results

Get detailed test results for a Pingdom uptime check, including individual probe responses and response times.

Read read
Parameters
check_id, from, to, limit, offset, probes, status
Generic call
kosmo integrations:call pingdom.pingdom_get_results '{"check_id":1,"from":1,"to":1,"limit":1,"offset":1,"probes":"example_probes","status":"example_status"}' --json
Shortcut
kosmo integrations:pingdom pingdom_get_results '{"check_id":1,"from":1,"to":1,"limit":1,"offset":1,"probes":"example_probes","status":"example_status"}' --json

pingdom.pingdom_list_alerts

List alerts for the Pingdom account. Returns alert details including check ID, contact, and alert type.

Read read
Parameters
limit, offset, check_id, status
Generic call
kosmo integrations:call pingdom.pingdom_list_alerts '{"limit":1,"offset":1,"check_id":1,"status":"example_status"}' --json
Shortcut
kosmo integrations:pingdom pingdom_list_alerts '{"limit":1,"offset":1,"check_id":1,"status":"example_status"}' --json

pingdom.pingdom_get_current_user

Get details of the currently authenticated Pingdom user, including account info and credits.

Read read
Parameters
none
Generic call
kosmo integrations:call pingdom.pingdom_get_current_user '{}' --json
Shortcut
kosmo integrations:pingdom pingdom_get_current_user '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

pingdom.pingdom_list_checks 4 parameters
Schema command
kosmo integrations:schema pingdom.pingdom_list_checks --json
ParameterTypeRequiredDescription
limit integer no Maximum number of checks to return (default: 100).
offset integer no Offset for pagination (default: 0).
status string no Filter by status: "up", "down", "paused", "unknown".
tags string no Filter by tag (comma-separated).
pingdom.pingdom_get_check 1 parameters
Schema command
kosmo integrations:schema pingdom.pingdom_get_check --json
ParameterTypeRequiredDescription
check_id integer yes The ID of the check to retrieve.
pingdom.pingdom_create_check 10 parameters
Schema command
kosmo integrations:schema pingdom.pingdom_create_check --json
ParameterTypeRequiredDescription
name string yes Name of the check.
host string yes Target hostname or IP address.
type string yes Check type: "http", "https", "tcp", "ping", "dns", "udp", "smtp", "pop3", "imap".
resolution integer no Check interval in minutes (1, 5, 15, 30, 60). Default: 5.
url string no URL path for HTTP/HTTPS checks (e.g., "/health").
port integer no Target port for TCP/UDP checks.
tags string no Comma-separated tags for the check.
send_string string no String to send for TCP/UDP checks.
expect_string string no Expected response string for TCP checks.
contactids string no Comma-separated contact IDs to alert.
pingdom.pingdom_list_results 5 parameters
Schema command
kosmo integrations:schema pingdom.pingdom_list_results --json
ParameterTypeRequiredDescription
check_id integer yes The ID of the check.
from integer no Start timestamp (Unix epoch) for the results window.
to integer no End timestamp (Unix epoch) for the results window.
limit integer no Maximum number of results to return.
offset integer no Offset for pagination.
pingdom.pingdom_get_results 7 parameters
Schema command
kosmo integrations:schema pingdom.pingdom_get_results --json
ParameterTypeRequiredDescription
check_id integer yes The ID of the check.
from integer no Start timestamp (Unix epoch) for the results window.
to integer no End timestamp (Unix epoch) for the results window.
limit integer no Maximum number of results to return.
offset integer no Offset for pagination.
probes string no Comma-separated probe IDs to filter by.
status string no Filter by result status: "up", "down", "unconfirmed_down".
pingdom.pingdom_list_alerts 4 parameters
Schema command
kosmo integrations:schema pingdom.pingdom_list_alerts --json
ParameterTypeRequiredDescription
limit integer no Maximum number of alerts to return (default: 100).
offset integer no Offset for pagination (default: 0).
check_id integer no Filter alerts by check ID.
status string no Filter by alert status: "sent", "not_sent", "scheduled".
pingdom.pingdom_get_current_user 0 parameters
Schema command
kosmo integrations:schema pingdom.pingdom_get_current_user --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.