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 +8 -5
- package/dist/darwin-arm64/GRDB_GRDB.bundle/Info.plist +8 -0
- package/dist/darwin-arm64/GRDB_GRDB.bundle/PrivacyInfo.xcprivacy +14 -0
- package/dist/darwin-arm64/Wax_Wax.bundle/cl100k_base.tiktoken +100256 -0
- package/dist/darwin-arm64/Wax_WaxVectorSearch.bundle/CosineDistance.metal +329 -0
- package/dist/darwin-arm64/Wax_WaxVectorSearch.bundle/TopKReduction.metal +167 -0
- package/dist/darwin-arm64/Wax_WaxVectorSearchMiniLM.bundle/all-MiniLM-L6-v2.mlmodelc/analytics/coremldata.bin +0 -0
- package/dist/darwin-arm64/Wax_WaxVectorSearchMiniLM.bundle/all-MiniLM-L6-v2.mlmodelc/coremldata.bin +0 -0
- package/dist/darwin-arm64/Wax_WaxVectorSearchMiniLM.bundle/all-MiniLM-L6-v2.mlmodelc/metadata.json +98 -0
- package/dist/darwin-arm64/Wax_WaxVectorSearchMiniLM.bundle/all-MiniLM-L6-v2.mlmodelc/model.mil +1460 -0
- package/dist/darwin-arm64/Wax_WaxVectorSearchMiniLM.bundle/all-MiniLM-L6-v2.mlmodelc/weights/weight.bin +0 -0
- package/dist/darwin-arm64/Wax_WaxVectorSearchMiniLM.bundle/bert_tokenizer_vocab.txt +30522 -0
- package/dist/darwin-arm64/swift-crypto_Crypto.bundle/PrivacyInfo.xcprivacy +15 -0
- package/dist/darwin-arm64/swift-nio_NIOPosix.bundle/PrivacyInfo.xcprivacy +23 -0
- package/dist/darwin-arm64/wax-cli +0 -0
- package/dist/darwin-arm64/wax-cli.sha256 +1 -1
- package/dist/darwin-arm64/wax-mcp +0 -0
- package/dist/darwin-arm64/wax-mcp.sha256 +1 -1
- package/dist/darwin-x64/README.txt +1 -0
- package/package.json +2 -3
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
|
|
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
|
|
25
|
-
git add npm/waxmcp/package.json Sources/WaxMCPServer/main.swift
|
|
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,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>
|