{
  "info": {
    "name": "Pushbullet — mcp.ai",
    "description": "REST API for the Pushbullet MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/pushbullet",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "pushbullet_create_chat",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/chat",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "chat"
          ]
        },
        "description": "Tool to create a new chat with the specified email address. use when you need to initiate a conversation thread by email.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_create_device",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/device",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "device"
          ]
        },
        "description": "Tool to register a new device under the current user's account. use when adding a new hardware or app device to pushbullet.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"icon\": \"\",\n  \"model\": \"\",\n  \"has_sms\": false,\n  \"nickname\": \"\",\n  \"push_token\": \"\",\n  \"app_version\": 0,\n  \"manufacturer\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_create_push",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/push",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "push"
          ]
        },
        "description": "Tool to send a new push (note, link, or file) to a device, user, channel, or client. use when you need to share content to a specific target. example: \"send a link to https://example.com to device abc",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"body\": \"\",\n  \"guid\": \"\",\n  \"type\": \"\",\n  \"email\": \"\",\n  \"title\": \"\",\n  \"file_url\": \"\",\n  \"file_name\": \"\",\n  \"file_type\": \"\",\n  \"channel_tag\": \"\",\n  \"client_iden\": \"\",\n  \"device_iden\": \"\",\n  \"source_device_iden\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_delete_all_pushes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/all/pushes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "all",
            "pushes"
          ]
        },
        "description": "Tool to delete all pushes for the current user asynchronously. use when you need to bulk-clear all existing pushes in one call.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_delete_chat",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/chat",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "chat"
          ]
        },
        "description": "Tool to delete a chat by its identifier. use when you need to remove a chat from your pushbullet account after confirming its identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"iden\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_delete_device",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/device",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "device"
          ]
        },
        "description": "Tool to remove a device by its identifier. use when you need to delete a device from your pushbullet account after confirming its identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"device_iden\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_delete_push",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/push",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "push"
          ]
        },
        "description": "Tool to delete a specific push by its identifier. use when you need to remove a push after confirming its identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"iden\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_get_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user"
          ]
        },
        "description": "Tool to retrieve the currently authenticated user's profile. use when you need to verify the access token or display the current user's details.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_list_chats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/chats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "chats"
          ]
        },
        "description": "Tool to list all chat objects for the current user. use when you need the full set of chat threads before sending or muting messages.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_list_devices",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/devices",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "devices"
          ]
        },
        "description": "Tool to list all registered devices for the current user. use after obtaining a valid access token.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_list_pushes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pushes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pushes"
          ]
        },
        "description": "Tool to list pushes with optional filtering and pagination. use when retrieving or syncing pushes after a certain time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"active\": false,\n  \"cursor\": \"\",\n  \"modified_after\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_pushbullet_create_device",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pushbullet/create/device",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pushbullet",
            "create",
            "device"
          ]
        },
        "description": "Tool to register a new device under the current user’s account. use when adding a new hardware or app device to the user's pushbullet devices.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"icon\": \"\",\n  \"model\": \"\",\n  \"has_sms\": false,\n  \"nickname\": \"\",\n  \"push_token\": \"\",\n  \"app_version\": 0,\n  \"manufacturer\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_pushbullet_delete_all_pushes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pushbullet/delete/all/pushes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pushbullet",
            "delete",
            "all",
            "pushes"
          ]
        },
        "description": "Tool to delete all pushes for the current user asynchronously. use when you need to bulk-clear all existing pushes in one call.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_pushbullet_delete_push",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pushbullet/delete/push",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pushbullet",
            "delete",
            "push"
          ]
        },
        "description": "Tool to delete a specific push by its identifier. use when you need to remove a push you created.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"iden\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_pushbullet_update_chat",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pushbullet/update/chat",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pushbullet",
            "update",
            "chat"
          ]
        },
        "description": "Tool to mute or unmute an existing chat. use when adjusting notification settings for a specific chat by its identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"iden\": \"\",\n  \"muted\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_pushbullet_update_device",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pushbullet/update/device",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pushbullet",
            "update",
            "device"
          ]
        },
        "description": "Tool to update metadata for a device by its identifier. use when you need to change device settings like nickname, model, or icon.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"icon\": \"\",\n  \"iden\": \"\",\n  \"model\": \"\",\n  \"has_sms\": false,\n  \"nickname\": \"\",\n  \"push_token\": \"\",\n  \"app_version\": 0,\n  \"manufacturer\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_update_device",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/device",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "device"
          ]
        },
        "description": "Tool to update metadata for a device by its identifier. use when changing a device's nickname, model, or other settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"icon\": \"\",\n  \"iden\": \"\",\n  \"model\": \"\",\n  \"has_sms\": false,\n  \"nickname\": \"\",\n  \"push_token\": \"\",\n  \"app_version\": 0,\n  \"manufacturer\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_update_push",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/push",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "push"
          ]
        },
        "description": "Tool to update a push (dismiss or modify list items) by its identifier. use when marking a push as dismissed or updating list push items.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"iden\": \"\",\n  \"items\": \"\",\n  \"dismissed\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pushbullet_upload_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "request"
          ]
        },
        "description": "Tool to obtain a signed upload url for a file before pushing. use when you need to upload file content via the signed s3 form data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_name\": \"\",\n  \"file_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}