kibbutz-mcp 1.0.0 → 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/build/index.js +2 -1
- package/package.json +3 -3
package/build/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
2
3
|
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
|
|
3
4
|
import { v4 as uuidv4 } from 'uuid';
|
|
@@ -13,7 +14,7 @@ let token = null;
|
|
|
13
14
|
const map = new Map();
|
|
14
15
|
const server = new McpServer({
|
|
15
16
|
name: 'kibbutz-mcp',
|
|
16
|
-
version: '1.0.
|
|
17
|
+
version: '1.0.1',
|
|
17
18
|
});
|
|
18
19
|
function findChromeExecutable() {
|
|
19
20
|
const platform = process.platform;
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kibbutz-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "",
|
|
5
|
-
"main": "index.js",
|
|
5
|
+
"main": "build/index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
8
|
"build": "tsc && chmod 755 build/index.js"
|
|
@@ -28,4 +28,4 @@
|
|
|
28
28
|
"@types/ws": "^8.18.1",
|
|
29
29
|
"typescript": "^5.9.3"
|
|
30
30
|
}
|
|
31
|
-
}
|
|
31
|
+
}
|