analytics
Pingdom MCP Integration for OpenAI Agents SDK
Connect Pingdom to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Pingdom to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Pingdom MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-pingdom": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=pingdom",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=pingdom --write=deny Why Use KosmoKrator Here
Expose only Pingdom instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Pingdom Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Pingdom integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__pingdom__pingdom_list_checks | pingdom.pingdom_list_checks | Read | List all uptime checks in Pingdom. Returns check IDs, names, hostnames, statuses, and last test times. |
integration__pingdom__pingdom_get_check | pingdom.pingdom_get_check | Read | Get detailed information about a specific Pingdom uptime check, including configuration, current status, and last test results. |
integration__pingdom__pingdom_create_check | pingdom.pingdom_create_check | Write | Create a new uptime check in Pingdom. Supports HTTP, HTTPS, TCP, ping, DNS, UDP, SMTP, POP3, and IMAP check types. |
integration__pingdom__pingdom_list_results | pingdom.pingdom_list_results | Read | List summary results for a Pingdom uptime check. Returns response times and status summaries. |
integration__pingdom__pingdom_get_results | pingdom.pingdom_get_results | Read | Get detailed test results for a Pingdom uptime check, including individual probe responses and response times. |
integration__pingdom__pingdom_list_alerts | pingdom.pingdom_list_alerts | Read | List alerts for the Pingdom account. Returns alert details including check ID, contact, and alert type. |
integration__pingdom__pingdom_get_current_user | pingdom.pingdom_get_current_user | Read | Get details of the currently authenticated Pingdom user, including account info and credits. |