@dbx-app/mcp-darwin-x64 0.4.34

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.
Files changed (3) hide show
  1. package/README.md +3 -0
  2. package/bin/dbx-mcp +0 -0
  3. package/package.json +23 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @dbx-app/mcp-darwin-x64
2
+
3
+ Platform-specific Rust binary used by `@dbx-app/mcp-server`. Install the main package instead of depending on this package directly.
package/bin/dbx-mcp ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@dbx-app/mcp-darwin-x64",
3
+ "version": "0.4.34",
4
+ "description": "Precompiled DBX MCP Rust binary for darwin x64",
5
+ "license": "Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/t8y2/dbx",
9
+ "directory": "packages/mcp-darwin-x64"
10
+ },
11
+ "os": [
12
+ "darwin"
13
+ ],
14
+ "cpu": [
15
+ "x64"
16
+ ],
17
+ "bin": {
18
+ "dbx-mcp-native": "bin/dbx-mcp"
19
+ },
20
+ "files": [
21
+ "bin"
22
+ ]
23
+ }