Pushbullet

Pushbullet API integration with managed OAuth for cross-device notification automation. Send pushes, manage devices, create chats, and handle cross-device me...

Jay

@hith3sh

What This Skill Does

Sends notifications, links, notes, and files across devices using the Pushbullet API with managed OAuth authentication. Manages devices, chats, and push history through a single integration.

Replaces manual API key management and custom notification scripts by providing a ready-to-use OAuth integration for cross-device messaging and alerts.

When to Use It

  • Send a notification to all your devices when a long-running script finishes
  • Share a link or note from your computer to your phone instantly
  • List all connected Pushbullet devices to verify setup
  • Create a chat to send messages to another Pushbullet user
  • Delete all push history to clear old notifications
  • Upload a file and push it to a specific device

Install

$ openclaw skills install @hith3sh/pushbullet

Pushbullet

Pushbullet

Pushbullet connects your devices for instant notifications, file sharing, and cross-device messaging. This integration uses managed OAuth through ClawLink to send pushes, manage devices, chats, and handle all Pushbullet operations without managing API keys manually.

Setup in 3 Steps

Step 1: InstallStep 2: Pair AccountStep 3: Connect Pushbullet
InstallPairApp-specific connection GIF coming soon
Run the install command in OpenClawSign in and approve the deviceOpen the dashboard and connect Pushbullet

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   OpenClaw      │────▶│   ClawLink   │────▶│  Pushbullet API  │
│   (User Chat)   │     │   (OAuth)    │     │                  │
└─────────────────┘     └──────────────┘     └──────────────────┘

Install

openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart

Quick Start

Send a link push to a device:

clawlink_execute_tool --integration pushbullet --tool pushbullet_create_push --args '{"type": "link", "title": "Check this out", "url": "https://example.com", "device_iden": "device-iden-here"}'

List your registered devices:

clawlink_execute_tool --integration pushbullet --tool pushbullet_list_devices

View your push history:

clawlink_execute_tool --integration pushbullet --tool pushbullet_list_pushes

Authentication

Pushbullet uses OAuth 2.0 managed by ClawLink. No API keys are needed. Authorize access through the ClawLink dashboard. Your access token is stored securely and refreshed automatically.

Connect at: https://claw-link.dev/dashboard?add=pushbullet

Connection Management

List connections:

clawlink_list_integrations

Verify connection:

clawlink_execute_tool --integration pushbullet --tool pushbullet_get_user

Reconnect: If a connection expires, visit the dashboard URL above and reconnect Pushbullet.

Security & Permissions

  • Read operations (listing devices, pushes, chats, user profile) are safe and require no confirmation.
  • Write operations (creating pushes, chats, devices, updating settings) modify data and require confirmation.
  • Destructive operations (deleting pushes, chats, devices, or clearing all pushes) are high-impact and irreversible.

Tool Reference

User Operations

ToolDescriptionMode
pushbullet_get_userRetrieve the authenticated user's profileRead

Push Operations

ToolDescriptionMode
pushbullet_list_pushesList pushes with optional filtering and paginationRead
pushbullet_create_pushSend a push (note, link, or file) to a device, user, or channelWrite
pushbullet_update_pushDismiss or modify a push by its identifierWrite
pushbullet_delete_pushDelete a specific push by its identifierWrite (Destructive)
pushbullet_delete_all_pushesDelete all pushes for the current userWrite (Destructive)
pushbullet_upload_requestObtain a signed upload URL for file pushesWrite

Device Operations

ToolDescriptionMode
pushbullet_list_devicesList all registered devices for the current userRead
pushbullet_create_deviceRegister a new device under the current user's accountWrite
pushbullet_update_deviceUpdate device metadata (nickname, model, etc.)Write
pushbullet_delete_deviceRemove a device from the accountWrite (Destructive)

Chat Operations

ToolDescriptionMode
pushbullet_list_chatsList all chat objects for the current userRead
pushbullet_create_chatCreate a new chat with a specified email addressWrite
pushbullet_update_chatMute or unmute an existing chatWrite
pushbullet_delete_chatDelete a chat by its identifierWrite (Destructive)

Code Examples

Send a note push to all devices:

{
  "tool": "pushbullet_create_push",
  "args": {
    "type": "note",
    "title": "Reminder",
    "body": "Team standup in 15 minutes"
  }
}

Send a link to a specific device:

{
  "tool": "pushbullet_create_push",
  "args": {
    "type": "link",
    "title": "Design Review",
    "url": "https://figma.com/file/abc123",
    "device_iden": "ujCvR2hKfhZSFzJ"
  }
}

List pushes after a specific timestamp:

{
  "tool": "pushbullet_list_pushes",
  "args": {
    "modified_after": 1685500000
  }
}

Register a new device:

{
  "tool": "pushbullet_create_device",
  "args": {
    "nickname": "Office Laptop",
    "type": "computer",
    "model": "MacBook Pro"
  }
}

Mute a chat:

{
  "tool": "pushbullet_update_chat",
  "args": {
    "iden": "chat-iden-here",
    "muted": true
  }
}

Discovery Workflow

  1. Call clawlink_list_integrations to confirm pushbullet is connected.
  2. Call clawlink_list_tools --integration pushbullet to see the live catalog.
  3. Start with pushbullet_get_user to verify the connection.
  4. Use pushbullet_list_devices to discover available target devices.
  5. Use pushbullet_list_pushes to view push history.

Execution Workflow

Read Flow:
  get_user → list_devices / list_pushes / list_chats

Write Flow:
  create_push (confirm) → target device receives notification

Manage Flow:
  list_devices → update_device / delete_device (confirm)
  list_chats → update_chat (mute/unmute) / delete_chat (confirm)

Notes

  • Pushes can target specific devices, users by email, channels, or all of the user's devices (when no target is specified).
  • File pushes require a two-step process: first call pushbullet_upload_request to get a signed S3 URL, upload the file, then create the push with the file URL.
  • Deleting all pushes is asynchronous -- it may take a moment to complete.
  • Chat deletion is permanent; there is no undo.

Error Handling

Status / ErrorMeaning
401 UnauthorizedOAuth token expired; reconnect Pushbullet from the dashboard
403 ForbiddenAccess denied; check token scopes
404 Not FoundInvalid push, device, or chat identifier
429 Too Many RequestsRate limit exceeded; Pushbullet limits API calls per minute

Troubleshooting

Tools Not Visible

Run clawlink_list_tools --integration pushbullet to verify the integration is active. If empty, reconnect at https://claw-link.dev/dashboard?add=pushbullet.

Push Not Delivered

Verify the target device is still registered by calling pushbullet_list_devices. Ensure the device_iden matches a valid device.

File Upload Fails

Use pushbullet_upload_request first to get the signed S3 form data. The file must be uploaded to the returned URL before creating the push.

Resources


Powered by ClawLink -- an integration hub for OpenClaw

ClawLink Logo

Top skills in this category

google-meet

@byungkyu

Google Meet API integration with managed OAuth. Create meeting spaces, list conference records, and manage meeting participants. Use this skill when users want to interact with Google Meet. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway). Calls run through the `maton` CLI with OAuth login; default to read and list calls, and confirm every write or new connection with the user.

1518k

Google Meet

@hith3sh

Google Meet API integration with managed OAuth. Create meeting spaces, inspect conference records, retrieve recordings and transcripts, and manage meeting pa...

327.0k

Gmail OAuth Setup

@kai-jar

Set up Gmail API access via gog CLI with manual OAuth flow. Use when setting up Gmail integration, renewing expired OAuth tokens, or troubleshooting Gmail authentication on headless servers.

75.8k

Twilio

@byungkyu

Twilio API integration with managed OAuth. SMS, voice calls, phone numbers, and communications. Use this skill when users want to send SMS messages, make voice calls, manage phone numbers, or work with Twilio resources. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway). Requires network access and valid Maton API key. Calls run through the `maton` CLI with OAuth login, or over raw HTTP with a Maton API key where the CLI cannot be installed. The endpoints documented here are the intended surface, not a technical limit — the `maton api` passthrough can reach others the connection permits. Default to read and list calls, and confirm every write or new connection with the user.

85.1k

API Gateway

@byungkyu

Call third-party APIs through the Maton gateway, which injects the credential for an app the user has already connected. Use this skill when the user names a connected app and a concrete action in it - read a mailbox, query a CRM, file an issue, update a spreadsheet, run a query through a connected

39486k