@iblai/iblai-js 1.0.36 → 1.0.38
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/bin/ibl-mcp-server.js +11 -0
- package/package.json +5 -4
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { createRequire } from 'module';
|
|
3
|
+
import { resolve, dirname } from 'path';
|
|
4
|
+
import { fileURLToPath } from 'url';
|
|
5
|
+
|
|
6
|
+
// Resolve @iblai/mcp from this package's dependency tree
|
|
7
|
+
const require = createRequire(import.meta.url);
|
|
8
|
+
const mcpEntry = require.resolve('@iblai/mcp');
|
|
9
|
+
|
|
10
|
+
// Import and run it
|
|
11
|
+
await import(mcpEntry);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iblai/iblai-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.38",
|
|
4
4
|
"description": "Unified JavaScript SDK for IBL.ai — re-exports data-layer, web-containers, and web-utils under a single package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
|
+
"bin",
|
|
11
12
|
"README.md"
|
|
12
13
|
],
|
|
13
14
|
"exports": {
|
|
@@ -54,15 +55,15 @@
|
|
|
54
55
|
"author": "iblai",
|
|
55
56
|
"license": "ISC",
|
|
56
57
|
"bin": {
|
|
57
|
-
"ibl-mcp-server": "./
|
|
58
|
+
"ibl-mcp-server": "./bin/ibl-mcp-server.js"
|
|
58
59
|
},
|
|
59
60
|
"dependencies": {
|
|
60
61
|
"axios": "^1.13.5",
|
|
61
62
|
"dotenv": "^16.5.0",
|
|
62
63
|
"winston": "^3.19.0",
|
|
63
|
-
"@iblai/data-layer": "1.1.
|
|
64
|
-
"@iblai/mcp": "1.1.0",
|
|
64
|
+
"@iblai/data-layer": "1.1.16",
|
|
65
65
|
"@iblai/web-containers": "1.1.22",
|
|
66
|
+
"@iblai/mcp": "1.1.0",
|
|
66
67
|
"@iblai/web-utils": "1.1.15"
|
|
67
68
|
},
|
|
68
69
|
"peerDependencies": {
|