KosmoKrator

notifications

Pushbullet MCP Integration for OpenAI Agents SDK

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

5 functions 3 read 2 write Bearer token auth

Connect Pushbullet 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.

Pushbullet MCP Config for OpenAI Agents SDK

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

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

Run the Gateway Manually

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

Why Use KosmoKrator Here

Scoped tools

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

Pushbullet Tools Visible to OpenAI Agents

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

MCP toolSource functionTypeDescription
integration__pushbullet__pushbullet_list_pushes pushbullet.pushbullet_list_pushes Read List recent pushes (notifications) from Pushbullet. Returns push items including notes, links, and files.
integration__pushbullet__pushbullet_create_push pushbullet.pushbullet_create_push Write Send a push notification via Pushbullet. Supports "note" (title + body) and "link" (title + body + URL) types.
integration__pushbullet__pushbullet_delete_push pushbullet.pushbullet_delete_push Write Delete a push notification from Pushbullet by its unique identifier (iden).
integration__pushbullet__pushbullet_list_devices pushbullet.pushbullet_list_devices Read List all devices registered with the current user's Pushbullet account. Returns device names, types, and identifiers.
integration__pushbullet__pushbullet_get_current_user pushbullet.pushbullet_get_current_user Read Get the authenticated Pushbullet user's profile information, including name, email, and account details.

Related Pushbullet Pages