@barivia/barsom-mcp 0.1.0
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 +127 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2111 -0
- package/dist/index.js.map +1 -0
- package/dist/views/src/views/data-preview/index.html +137 -0
- package/dist/views/src/views/som-explorer/index.html +288 -0
- package/dist/views/src/views/training-monitor/index.html +146 -0
- package/package.json +51 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@barivia/barsom-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "barSOM MCP proxy — connect any MCP client to the barSOM cloud API for Self-Organizing Map analytics",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"som",
|
|
8
|
+
"self-organizing-map",
|
|
9
|
+
"machine-learning",
|
|
10
|
+
"barsom",
|
|
11
|
+
"barivia"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"author": "Barivia",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/barivia/barivia-platform.git",
|
|
18
|
+
"directory": "apps/mcp-proxy"
|
|
19
|
+
},
|
|
20
|
+
"type": "module",
|
|
21
|
+
"main": "dist/index.js",
|
|
22
|
+
"bin": {
|
|
23
|
+
"barsom-mcp": "dist/index.js"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsc && npm run build:views",
|
|
30
|
+
"build:views": "INPUT=src/views/som-explorer/index.html vite build && INPUT=src/views/data-preview/index.html vite build && INPUT=src/views/training-monitor/index.html vite build",
|
|
31
|
+
"dev": "tsx src/index.ts",
|
|
32
|
+
"test": "vitest run --config vitest.config.ts",
|
|
33
|
+
"prepublishOnly": "npm run build"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@modelcontextprotocol/ext-apps": "^1.0.1",
|
|
37
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
38
|
+
"zod": "^3.23.0"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^22.0.0",
|
|
42
|
+
"tsx": "^4.19.0",
|
|
43
|
+
"typescript": "^5.5.0",
|
|
44
|
+
"vite": "^7.3.1",
|
|
45
|
+
"vite-plugin-singlefile": "^2.3.0",
|
|
46
|
+
"vitest": "^4.0.18"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=18"
|
|
50
|
+
}
|
|
51
|
+
}
|