notifications
Pushbullet CLI for Headless Automation
Use the Pushbullet CLI for headless automation with headless JSON commands, schema discovery, credentials, and permission controls.
5 functions 3 read 2 write Bearer token auth
Pushbullet CLI for Headless Automation
Use KosmoKrator as a non-interactive integration runtime for local automations and wrappers.
Use headless automation when another tool needs a stable local command surface. The Pushbullet CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.
Command Shape
# Pushbullet CLI for Headless Automation
kosmokrator integrations:configure pushbullet --set access_token="$PUSHBULLET_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call pushbullet.pushbullet_list_pushes '{"limit":1,"cursor":"example_cursor"}' --json Discovery Before Execution
Agents and scripts can inspect Pushbullet docs and schemas 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 Useful Pushbullet CLI Functions
| Function | Type | Parameters | Description |
|---|---|---|---|
pushbullet.pushbullet_list_pushes | Read | limit, cursor | List recent pushes (notifications) from Pushbullet. Returns push items including notes, links, and files. |
pushbullet.pushbullet_create_push | Write | type, title, body, url, device_iden | Send a push notification via Pushbullet. Supports "note" (title + body) and "link" (title + body + URL) types. |
pushbullet.pushbullet_delete_push | Write | push_iden | Delete a push notification from Pushbullet by its unique identifier (iden). |
pushbullet.pushbullet_list_devices | Read | none | List all devices registered with the current user's Pushbullet account. Returns device names, types, and identifiers. |
pushbullet.pushbullet_get_current_user | Read | none | Get the authenticated Pushbullet user's profile information, including name, email, and account details. |
Automation Notes
- Use
--jsonfor machine-readable output. - Keep credentials out of argv by using environment variables or stored KosmoKrator configuration.
- Configure read/write policy before unattended runs; use
--forceonly for trusted automation. - Use the MCP gateway instead when the agent needs dynamic tool discovery inside a conversation.