waxmcp 0.1.13 → 0.1.15

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
@@ -8,21 +8,24 @@
8
8
  npx -y waxmcp@latest mcp serve
9
9
  ```
10
10
 
11
+ > Note: `waxmcp` currently supports Apple Silicon macOS only (`darwin-arm64`).
12
+
11
13
  To publish a new version:
12
14
 
13
15
  ```bash
14
- cd /path/to/Wax/npm/waxmcp
15
- npm version patch # or minor/major/1.2.3
16
+ cd /path/to/Wax/Resources/npm/waxmcp
17
+ npm version patch # or minor/major/1.2.3 (requires npm publish access)
16
18
  npm publish --access public
17
19
  ```
18
20
 
19
21
  This repo also ships a release script that updates `version`, syncs
20
- `Sources/WaxMCPServer/main.swift`'s `serverVersion`, and rebuilds both Darwin binaries:
22
+ `Sources/WaxMCPServer/main.swift`'s `serverVersion`, and rebuilds the Darwin binaries
23
+ and resource bundles:
21
24
 
22
25
  ```bash
23
26
  cd /path/to/Wax
24
- ./scripts/release-waxmcp.sh patch # or minor / major / 1.2.3
25
- git add npm/waxmcp/package.json Sources/WaxMCPServer/main.swift npm/waxmcp/dist/darwin-*/wax-cli npm/waxmcp/dist/darwin-*/wax-cli.sha256 npm/waxmcp/dist/darwin-*/wax-mcp npm/waxmcp/dist/darwin-*/wax-mcp.sha256
27
+ ./scripts/release-waxmcp.sh 0.1.15
28
+ git add Resources/npm/waxmcp/package.json Sources/WaxMCPServer/main.swift Resources/npm/waxmcp/dist
26
29
  git commit -m "release: bump waxmcp version"
27
30
  ```
28
31
 
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ </dict>
8
+ </plist>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>NSPrivacyTracking</key>
6
+ <false/>
7
+ <key>NSPrivacyCollectedDataTypes</key>
8
+ <array/>
9
+ <key>NSPrivacyTrackingDomains</key>
10
+ <array/>
11
+ <key>NSPrivacyAccessedAPITypes</key>
12
+ <array/>
13
+ </dict>
14
+ </plist>