Skip to content

oliviermattei/mcp-pushbullet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MCP Pushbullet

An MCP (Message Control Protocol) service that allows sending notifications via Pushbullet.

Features

  • Send notifications via Pushbullet
  • Simple and intuitive REST API
  • Support for notifications with custom title and message
  • Customizable notification status (success, error, etc.)
  • Easy integration with Cursor IDE

Prerequisites

  • Node.js (version 14 or higher)
  • A Pushbullet account with an access token

Installation

As a global npm package

npm install -g @oliviermattei/mcp-pushbullet

As a local dependency

npm install @oliviermattei/mcp-pushbullet

From source

  1. Clone the repository:
git clone https://github.com/oliviermattei/mcp-pushbullet.git
cd mcp-pushbullet
  1. Install dependencies:
npm install
  1. Start the server:
node index.js --access-token YOUR_PUSHBULLET_TOKEN

Usage

Command Line

mcp-pushbullet --access-token YOUR_PUSHBULLET_TOKEN

Cursor Integration

Add the following configuration to your Cursor settings:

"pushbullet": {
  "command": "npx",
  "args": [
    "-y",
    "@oliviermattei/mcp-pushbullet@latest",
    "--access-token",
    "YOUR_PUSHBULLET_TOKEN"
  ]
}

API Endpoints

Send a notification

POST /notify

Request body:

{
  "title": "Notification title",
  "message": "Notification message",
  "status": "success" // Optional, possible values: success, error, warning
}

Check service status

GET /health

Configuration

The server listens on port 9876 by default. You can change this port by setting the PORT environment variable.

Publishing

To publish a new version to npm:

  1. Update the version in package.json
  2. Commit your changes
  3. Run:
npm publish

License

MIT

Contributing

Contributions are welcome! Feel free to open an issue or submit a pull request.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published