bunqueue 2.7.20 → 2.7.22

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/README.md CHANGED
@@ -626,17 +626,20 @@ bunqueue is the **first job queue with native MCP support**. AI agents get a ful
626
626
  - **HTTP handlers** — register a URL, bunqueue auto-processes jobs via HTTP calls
627
627
 
628
628
  ```bash
629
- # One command to connect Claude Code
629
+ # bunqueue-mcp is a binary bundled inside the bunqueue package (not a standalone npm package),
630
+ # so install bunqueue first, then connect Claude Code:
631
+ bun add bunqueue
630
632
  claude mcp add bunqueue -- bunx bunqueue-mcp
631
633
  ```
632
634
 
633
635
  ```json
634
- // Claude Desktop / Cursor / Windsurf — add to MCP config
636
+ // Claude Desktop / Cursor / Windsurf — --package=bunqueue lets bunx resolve the bundled
637
+ // bunqueue-mcp binary without a separate install:
635
638
  {
636
639
  "mcpServers": {
637
640
  "bunqueue": {
638
641
  "command": "bunx",
639
- "args": ["bunqueue-mcp"]
642
+ "args": ["--package=bunqueue", "bunqueue-mcp"]
640
643
  }
641
644
  }
642
645
  }
@@ -15,7 +15,7 @@
15
15
  * "mcpServers": {
16
16
  * "bunqueue": {
17
17
  * "command": "bunx",
18
- * "args": ["bunqueue-mcp"],
18
+ * "args": ["--package=bunqueue", "bunqueue-mcp"],
19
19
  * "env": { "DATA_PATH": "./data/bunq.db" }
20
20
  * }
21
21
  * }
@@ -28,7 +28,7 @@
28
28
  * "mcpServers": {
29
29
  * "bunqueue": {
30
30
  * "command": "bunx",
31
- * "args": ["bunqueue-mcp"],
31
+ * "args": ["--package=bunqueue", "bunqueue-mcp"],
32
32
  * "env": {
33
33
  * "BUNQUEUE_MODE": "tcp",
34
34
  * "BUNQUEUE_HOST": "localhost",
package/dist/mcp/index.js CHANGED
@@ -15,7 +15,7 @@
15
15
  * "mcpServers": {
16
16
  * "bunqueue": {
17
17
  * "command": "bunx",
18
- * "args": ["bunqueue-mcp"],
18
+ * "args": ["--package=bunqueue", "bunqueue-mcp"],
19
19
  * "env": { "DATA_PATH": "./data/bunq.db" }
20
20
  * }
21
21
  * }
@@ -28,7 +28,7 @@
28
28
  * "mcpServers": {
29
29
  * "bunqueue": {
30
30
  * "command": "bunx",
31
- * "args": ["bunqueue-mcp"],
31
+ * "args": ["--package=bunqueue", "bunqueue-mcp"],
32
32
  * "env": {
33
33
  * "BUNQUEUE_MODE": "tcp",
34
34
  * "BUNQUEUE_HOST": "localhost",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bunqueue",
3
- "version": "2.7.20",
3
+ "version": "2.7.22",
4
4
  "description": "High-performance job queue for Bun & AI agents. SQLite persistence, cron scheduling, priorities, retries, DLQ, webhooks, native MCP server. Zero external dependencies.",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",
@@ -77,7 +77,7 @@
77
77
  "ioredis": "^5.9.3",
78
78
  "prettier": "^3.8.1",
79
79
  "typescript": "^5.9.3",
80
- "typescript-eslint": "^8.56.1"
80
+ "typescript-eslint": "8.56.1"
81
81
  },
82
82
  "peerDependencies": {
83
83
  "bun": "^1.3.9"