Cross-device notifications and file sharing.
## Pushbullet MCP Server: Cross-Device Notifications The **Pushbullet MCP Server** integrates Pushbullet's notification and file sharing service into Google Antigravity. This enables sending notifications, links, and files across all your devices seamlessly. ### Why Pushbullet MCP? Pushbullet connects all your devices: - **Cross-Device**: Phone, tablet, computer - **File Sharing**: Send files between devices - **Link Sharing**: Push URLs instantly - **SMS Sync**: Text from computer - **Channels**: Subscribe to notifications ### Key Features #### 1. Push Notifications ```python import requests headers = {"Access-Token": "your-access-token"} # Push note response = requests.post( "https://api.pushbullet.com/v2/pushes", headers=headers, json={ "type": "note", "title": "Build Complete", "body": "Build #123 passed all tests!" } ) ``` #### 2. Push Links ```python # Push URL response = requests.post( "https://api.pushbullet.com/v2/pushes", headers=headers, json={ "type": "link", "title": "Deployment Ready", "body": "Click to view the new deployment", "url": "https://staging.example.com" } ) ``` #### 3. Push Files ```python # First, request upload upload = requests.post( "https://api.pushbullet.com/v2/upload-request", headers=headers, json={"file_name": "report.pdf", "file_type": "application/pdf"} ) # Upload file upload_data = upload.json() requests.post(upload_data["upload_url"], files={"file": open("report.pdf", "rb")}) # Push file requests.post( "https://api.pushbullet.com/v2/pushes", headers=headers, json={ "type": "file", "file_name": upload_data["file_name"], "file_type": upload_data["file_type"], "file_url": upload_data["file_url"] } ) ``` ### Configuration ```json { "mcpServers": { "pushbullet": { "command": "npx", "args": ["-y", "@anthropic/mcp-pushbullet"], "env": { "PUSHBULLET_ACCESS_TOKEN": "your-access-token" } } } } ``` ### Use Cases **Developer Alerts**: Push notifications to all devices. **File Sharing**: Quick file transfer between devices. **Link Sharing**: Send URLs from server to phone. The Pushbullet MCP Server brings cross-device notifications to Antigravity.
{
"mcpServers": {
"pushbullet": {}
}
}