@nograai/mcp-linux-x64 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.
- package/README.md +11 -0
- package/nogra-mcp +0 -0
- package/package.json +16 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @nograai/mcp-linux-x64
|
|
2
|
+
|
|
3
|
+
Native `nogra-mcp` binary for Linux x64.
|
|
4
|
+
|
|
5
|
+
SCAFFOLD — CI-populated. This directory intentionally contains NO binary in
|
|
6
|
+
the source tree. The release CI matrix (Phase C) builds `nogra-mcp` on a
|
|
7
|
+
native Linux x64 runner via the platform build script and places it here
|
|
8
|
+
before `npm publish`. Publishing this package without the binary is a
|
|
9
|
+
release-pipeline error.
|
|
10
|
+
|
|
11
|
+
Do not install this package directly — install `@nograai/mcp`.
|
package/nogra-mcp
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nograai/mcp-linux-x64",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Nogra MCP server — native binary for Linux x64. Installed automatically as an optionalDependency of @nograai/mcp.",
|
|
5
|
+
"license": "SEE LICENSE IN README.md",
|
|
6
|
+
"os": [
|
|
7
|
+
"linux"
|
|
8
|
+
],
|
|
9
|
+
"cpu": [
|
|
10
|
+
"x64"
|
|
11
|
+
],
|
|
12
|
+
"files": [
|
|
13
|
+
"nogra-mcp"
|
|
14
|
+
],
|
|
15
|
+
"preferUnplugged": true
|
|
16
|
+
}
|