@vybit/mcp-server 1.2.2 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -578,7 +578,7 @@ const VYBIT_ICON = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAA
578
578
  // Create MCP server
579
579
  const server = new Server({
580
580
  name: 'vybit-mcp-server',
581
- version: '1.2.2',
581
+ version: '1.2.3',
582
582
  icons: [
583
583
  {
584
584
  src: VYBIT_ICON,
package/manifest.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "manifest_version": "0.3",
3
3
  "name": "vybit-mcp-server",
4
4
  "display_name": "Vybit Notifications",
5
- "version": "1.2.2",
5
+ "version": "1.2.3",
6
6
  "description": "Send push notifications with personalized sounds via the Vybit platform",
7
7
  "long_description": "Integrates Claude with the Vybit notification platform. Create and manage notification endpoints (vybits), trigger push notifications with custom sounds, browse and subscribe to public vybits, manage access permissions, view notification logs, and monitor API usage.",
8
8
  "author": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vybit/mcp-server",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Model Context Protocol (MCP) server for Vybit Developer API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "scripts": {
12
12
  "build": "tsc -b",
13
- "bundle": "esbuild dist/index.js --bundle --platform=node --format=esm --outfile=dist/bundle.js --banner:js='#!/usr/bin/env node'",
13
+ "bundle": "esbuild dist/index.js --bundle --platform=node --format=esm --outfile=dist/bundle.js",
14
14
  "clean": "rm -rf dist *.tsbuildinfo",
15
15
  "dev": "tsc --watch",
16
16
  "test": "jest --config ../../jest.config.js --rootDir ../..",