KosmoKrator

notifications

Pushbullet CLI for AI Agents

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

5 functions 3 read 2 write Bearer token auth

Pushbullet CLI Setup

Pushbullet can be configured headlessly with `kosmokrator integrations:configure pushbullet`.

# 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 pushbullet --set access_token="$PUSHBULLET_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor pushbullet --json
kosmokrator integrations:status --json

Credentials

Authentication type: Bearer token bearer_token. Configure credentials once, then use the same stored profile from scripts, coding CLIs, Lua code mode, and the MCP gateway.

KeyEnv varTypeRequiredLabel
access_token PUSHBULLET_ACCESS_TOKEN Secret secret yes Access Token
url PUSHBULLET_URL URL url no API Base URL

Call Pushbullet Headlessly

Use the generic call form when another coding CLI or script needs a stable universal interface.

kosmo integrations:call pushbullet.pushbullet_list_pushes '{
  "limit": 1,
  "cursor": "example_cursor"
}' --json

Use the provider shortcut form for shorter human-facing commands.

kosmo integrations:pushbullet pushbullet_list_pushes '{
  "limit": 1,
  "cursor": "example_cursor"
}' --json

Agent Discovery Commands

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

kosmo integrations:docs pushbullet --json
kosmo integrations:docs pushbullet.pushbullet_list_pushes --json
kosmo integrations:schema pushbullet.pushbullet_list_pushes --json
kosmo integrations:search "Pushbullet" --json
kosmo integrations:list --json

All CLI Functions

Every function below can be called headlessly. The generic form is stable across all integrations; the provider shortcut is shorter but specific to Pushbullet.

pushbullet.pushbullet_list_pushes

Read read

List recent pushes (notifications) from Pushbullet. Returns push items including notes, links, and files.

Parameters
limit, cursor

Generic CLI call

kosmo integrations:call pushbullet.pushbullet_list_pushes '{"limit":1,"cursor":"example_cursor"}' --json

Provider shortcut

kosmo integrations:pushbullet pushbullet_list_pushes '{"limit":1,"cursor":"example_cursor"}' --json

pushbullet.pushbullet_create_push

Write write

Send a push notification via Pushbullet. Supports "note" (title + body) and "link" (title + body + URL) types.

Parameters
type, title, body, url, device_iden

Generic CLI call

kosmo integrations:call pushbullet.pushbullet_create_push '{"type":"example_type","title":"example_title","body":"example_body","url":"example_url","device_iden":"example_device_iden"}' --json

Provider shortcut

kosmo integrations:pushbullet pushbullet_create_push '{"type":"example_type","title":"example_title","body":"example_body","url":"example_url","device_iden":"example_device_iden"}' --json

pushbullet.pushbullet_delete_push

Write write

Delete a push notification from Pushbullet by its unique identifier (iden).

Parameters
push_iden

Generic CLI call

kosmo integrations:call pushbullet.pushbullet_delete_push '{"push_iden":"example_push_iden"}' --json

Provider shortcut

kosmo integrations:pushbullet pushbullet_delete_push '{"push_iden":"example_push_iden"}' --json

pushbullet.pushbullet_list_devices

Read read

List all devices registered with the current user's Pushbullet account. Returns device names, types, and identifiers.

Parameters
none

Generic CLI call

kosmo integrations:call pushbullet.pushbullet_list_devices '{}' --json

Provider shortcut

kosmo integrations:pushbullet pushbullet_list_devices '{}' --json

pushbullet.pushbullet_get_current_user

Read read

Get the authenticated Pushbullet user's profile information, including name, email, and account details.

Parameters
none

Generic CLI call

kosmo integrations:call pushbullet.pushbullet_get_current_user '{}' --json

Provider shortcut

kosmo integrations:pushbullet pushbullet_get_current_user '{}' --json

Function Schemas

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

pushbullet.pushbullet_list_pushes

List recent pushes (notifications) from Pushbullet. Returns push items including notes, links, and files.

Operation
Read read
Schema command
kosmo integrations:schema pushbullet.pushbullet_list_pushes --json
ParameterTypeRequiredDescription
limit integer no Maximum number of pushes to return (default: 10, max: 500).
cursor string no Pagination cursor from a previous response to get the next page of results.

pushbullet.pushbullet_create_push

Send a push notification via Pushbullet. Supports "note" (title + body) and "link" (title + body + URL) types.

Operation
Write write
Schema command
kosmo integrations:schema pushbullet.pushbullet_create_push --json
ParameterTypeRequiredDescription
type string yes Push type: "note" for a text notification, "link" for a URL.
title string yes The title of the push notification.
body string yes The body text of the push notification.
url string no Required for "link" type — the URL to include in the push.
device_iden string no Target a specific device by its iden. Omit to send to all devices.

pushbullet.pushbullet_delete_push

Delete a push notification from Pushbullet by its unique identifier (iden).

Operation
Write write
Schema command
kosmo integrations:schema pushbullet.pushbullet_delete_push --json
ParameterTypeRequiredDescription
push_iden string yes The unique identifier (iden) of the push to delete.

pushbullet.pushbullet_list_devices

List all devices registered with the current user's Pushbullet account. Returns device names, types, and identifiers.

Operation
Read read
Schema command
kosmo integrations:schema pushbullet.pushbullet_list_devices --json
ParameterTypeRequiredDescription
No parameters.

pushbullet.pushbullet_get_current_user

Get the authenticated Pushbullet user's profile information, including name, email, and account details.

Operation
Read read
Schema command
kosmo integrations:schema pushbullet.pushbullet_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.