@nograai/mcp-darwin-arm64 1.0.1

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 +11 -0
  2. package/nogra-mcp +0 -0
  3. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # @nograai/mcp-darwin-arm64
2
+
3
+ Native `nogra-mcp` binary for macOS arm64 (Apple Silicon).
4
+
5
+ Do not install this package directly — install `@nograai/mcp`, which declares
6
+ all platform packages as optionalDependencies and selects the right one at
7
+ runtime via its `nogra-mcp` bin selector.
8
+
9
+ The `nogra-mcp` file in this package is the self-contained PyInstaller onefile
10
+ build produced by `packaging/build-macos-arm64.sh` (build-hardened: private
11
+ modules excluded and asserted absent, package data bundled).
package/nogra-mcp ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@nograai/mcp-darwin-arm64",
3
+ "version": "1.0.1",
4
+ "description": "Nogra MCP server — native binary for macOS arm64 (Apple Silicon). Installed automatically as an optionalDependency of @nograai/mcp.",
5
+ "license": "SEE LICENSE IN README.md",
6
+ "os": [
7
+ "darwin"
8
+ ],
9
+ "cpu": [
10
+ "arm64"
11
+ ],
12
+ "files": [
13
+ "nogra-mcp"
14
+ ],
15
+ "preferUnplugged": true
16
+ }