@barivia/barsom-mcp 0.7.12 → 0.7.13
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/LICENSE +15 -0
- package/README.md +5 -1
- package/package.json +4 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Copyright (c) 2026 Barivia AB. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software and associated documentation files (the "Software") are
|
|
4
|
+
proprietary to Barivia AB. The Software is licensed, not sold.
|
|
5
|
+
|
|
6
|
+
Without prior written permission from Barivia AB, you may not copy, modify,
|
|
7
|
+
merge, publish, distribute, sublicense, sell, or create derivative works
|
|
8
|
+
from the Software, except to the extent necessary to install and execute it
|
|
9
|
+
for your own use in connection with Barivia services under a separate
|
|
10
|
+
agreement with Barivia AB.
|
|
11
|
+
|
|
12
|
+
For licensing inquiries, contact Barivia AB.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED.
|
package/README.md
CHANGED
|
@@ -178,7 +178,11 @@ BARIVIA_API_URL=http://localhost:8080 BARIVIA_API_KEY=bv_test_key npm run dev
|
|
|
178
178
|
|
|
179
179
|
## Publishing
|
|
180
180
|
|
|
181
|
-
The npm tarball is **runtime-only**: minified `dist/**/*.js`, the three embedded view HTML files,
|
|
181
|
+
The npm tarball is **runtime-only**: minified `dist/**/*.js`, the three embedded view HTML files, **`LICENSE`**, `package.json`, and `README.md`. It does **not** include TypeScript source, `.map`, `.d.ts`, tests, or `src/`. CI runs `build:publish` (clean `dist`, compile without source maps, views, minify entrypoint) via `prepublishOnly`.
|
|
182
|
+
|
|
183
|
+
## License
|
|
184
|
+
|
|
185
|
+
**Proprietary — Barivia AB.** The package is published as **`UNLICENSED`** on npm (no permissive open-source grant). See the **`LICENSE`** file in this package. Use is subject to your agreements with Barivia; copying, redistribution, or derivative works are not permitted except as stated there or in writing by Barivia AB. (Any semver already published to npm under **MIT** stays MIT **for that published artifact only**; newer versions use the proprietary `LICENSE`.)
|
|
182
186
|
|
|
183
187
|
Published to **registry.npmjs.org** via GitHub Actions when you push tag `mcp-proxy-v*` (version in `package.json` must match the tag, e.g. tag `mcp-proxy-v0.7.10` for version `0.7.10`):
|
|
184
188
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@barivia/barsom-mcp",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.13",
|
|
4
4
|
"description": "barSOM MCP proxy — connect any MCP client to the barSOM cloud API for Self-Organizing Map analytics",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"barsom",
|
|
11
11
|
"barivia"
|
|
12
12
|
],
|
|
13
|
-
"license": "
|
|
14
|
-
"author": "Barivia",
|
|
13
|
+
"license": "UNLICENSED",
|
|
14
|
+
"author": "Barivia AB",
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
17
|
"url": "git+https://github.com/barestrand/barivia-platform.git",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"barsom-mcp": "dist/index.js"
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
|
+
"LICENSE",
|
|
30
31
|
"dist/**/*.js",
|
|
31
32
|
"dist/views/**/*.html"
|
|
32
33
|
],
|