brein 0.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 +6 -0
  2. package/index.js +3 -0
  3. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # brein
2
+
3
+ > Stub release reserving the name. Real package coming soon.
4
+
5
+ A policy-aware MCP server for an org-wide knowledge brain.
6
+ See [brein.dev](https://brein.dev) for updates.
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // brein — stub release. Real package coming soon. See https://brein.dev
2
+ console.error("brein: stub release — real package coming soon. https://brein.dev");
3
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "brein",
3
+ "version": "0.0.1",
4
+ "description": "Brein — a policy-aware MCP server for an org-wide knowledge brain. Stub release reserving the name; real package coming soon.",
5
+ "license": "MIT",
6
+ "homepage": "https://brein.dev",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/brainincorp/brain-mcp.git"
10
+ },
11
+ "keywords": ["mcp", "llm", "knowledge-base", "rag"],
12
+ "main": "index.js",
13
+ "files": ["index.js", "README.md"]
14
+ }