KosmoKrator

notifications

Pushover MCP Integration for Claude Agent SDK

Connect Pushover to Claude Agent SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

3 functions 2 read 1 write API key auth

Connect Pushover to Claude Agent SDK

Give Claude Agent SDK workflows access to KosmoKrator integrations through a local MCP server.

Add a KosmoKrator stdio MCP server to the Claude Agent SDK options. The gateway is local, scoped to this integration, and starts with --write=deny so Claude Agent SDK can inspect read-capable tools without receiving write access by default.

Pushover MCP Config for Claude Agent SDK

Use a narrow integration list so the agent does not load unrelated tools.

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

Run the Gateway Manually

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

Why Use KosmoKrator Here

Scoped tools

Expose only Pushover 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.

Pushover Tools Visible to Claude Agent SDK

Claude Agent SDK sees stable MCP tool names generated from the Pushover integration catalog.

MCP toolSource functionTypeDescription
integration__pushover__pushover_send_message pushover.pushover_send_message Write Send a push notification via Pushover. Supports message, title, priority levels, and optional URL/sound attachments.
integration__pushover__pushover_list_sounds pushover.pushover_list_sounds Read List available notification sounds in Pushover. Use sound names with the send_message tool.
integration__pushover__pushover_get_current_user pushover.pushover_get_current_user Read Validate the Pushover user credentials and retrieve account information.

Related Pushover Pages