KosmoKrator

monitoring

Atlassian Statuspage MCP Integration for OpenAI Agents SDK

Connect Atlassian Statuspage to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

5 functions 3 read 2 write API key auth

Connect Atlassian Statuspage 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.

Atlassian Statuspage MCP Config for OpenAI Agents SDK

Use headless JSON commands for CI-style execution and MCP for agent tool discovery.

{
  "mcpServers": {
    "kosmokrator-statuspage": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=statuspage",
        "--write=deny"
      ]
    }
  }
}

Run the Gateway Manually

kosmokrator mcp:serve --integration=statuspage --write=deny

Why Use KosmoKrator Here

Scoped tools

Expose only Atlassian Statuspage instead of a broad multi-service tool list.

Local credentials

Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.

Write policy

Start read-only, then opt into ask or allow for trusted workspaces.

Atlassian Statuspage Tools Visible to OpenAI Agents

OpenAI Agents sees stable MCP tool names generated from the Atlassian Statuspage integration catalog.

MCP toolSource functionTypeDescription
integration__statuspage__statuspage_list_incidents statuspage.statuspage_list_incidents Read List all incidents for your Atlassian Statuspage. Returns scheduled, ongoing, and resolved incidents with their current status and impact.
integration__statuspage__statuspage_create_incident statuspage.statuspage_create_incident Write Create a new incident on your Atlassian Statuspage. Specify the incident name, status, impact level, and an optional body describing the issue.
integration__statuspage__statuspage_update_incident statuspage.statuspage_update_incident Write Update an existing incident on your Atlassian Statuspage. Change the status, add updates to the body, or modify impact level.
integration__statuspage__statuspage_list_components statuspage.statuspage_list_components Read List all components on your Atlassian Statuspage. Returns component names, current status, and group information.
integration__statuspage__statuspage_get_current_user statuspage.statuspage_get_current_user Read Get the currently authenticated Atlassian Statuspage user. Useful for verifying API credentials and checking user permissions.

Related Atlassian Statuspage Pages