Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver ToolsFeatured on FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver Tools

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Pushbullet MCP
🔔

Pushbullet MCP MCP Server

Cross-device notifications and file sharing.

pushbulletnotificationssyncdevices

About

## 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.

Installation

Configuration
{
  "mcpServers": {
    "pushbullet": {}
  }
}

How to Use

    Related MCP Servers

    🧰

    Toolhouse MCP

    Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

    🔨

    Smithery Registry MCP

    The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

    🔍

    MCP Inspector

    Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

    ← Back to All MCP Servers