kibbutz-mcp 1.0.3 → 1.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/LICENSE +21 -0
- package/README.md +60 -0
- package/build/index.js +21 -1
- package/package.json +6 -4
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Amir David
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
|
|
2
|
+
# Kibbutz MCP - Tab & Group Manager
|
|
3
|
+
|
|
4
|
+
Make browser management simple - on your own or with your LLM MCP client
|
|
5
|
+
|
|
6
|
+
[](https://www.npmjs.com/package/kibbutz-mcp)
|
|
7
|
+
|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
[](https://youtu.be/L4xORTRshzk)
|
|
11
|
+
|
|
12
|
+
## Installation Steps
|
|
13
|
+
|
|
14
|
+
### Requirements
|
|
15
|
+
- Node.js 18 or newer
|
|
16
|
+
- VS Code, Cursor, Claude Desktop, or any other MCP client.
|
|
17
|
+
- Chrome, Chromium, or any other Chromium-based browser (for the browser extension).
|
|
18
|
+
|
|
19
|
+
### Install the MCP Server
|
|
20
|
+
Install the KIBBUTZ-MCP server in your MCP client using the following standard configuration (works in most tools):
|
|
21
|
+
|
|
22
|
+
```js
|
|
23
|
+
{
|
|
24
|
+
"mcpServers": {
|
|
25
|
+
"kibbutz-mcp": {
|
|
26
|
+
"command": "npx",
|
|
27
|
+
"args": [
|
|
28
|
+
"kibbutz-mcp@latest"
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
[](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522kibbutz-mcp%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522kibbutz-mcp%2540latest%2522%255D%257D)
|
|
36
|
+
|
|
37
|
+
### Download the Extension
|
|
38
|
+
|
|
39
|
+
Download the latest Chrome extension from the Chrome Web Store:
|
|
40
|
+
- **Download link**: https://chromewebstore.google.com/detail/dhgiopilpcmeepmlbafkmenddhgdgfhk
|
|
41
|
+
|
|
42
|
+
[](https://chromewebstore.google.com/detail/dhgiopilpcmeepmlbafkmenddhgdgfhk)
|
|
43
|
+
|
|
44
|
+
## Key Features
|
|
45
|
+
|
|
46
|
+
- ⚡️ Manage tabs and tab groups efficiently with a vertical tabs panel.
|
|
47
|
+
|
|
48
|
+
- 🗂️ Reorder tabs and tab groups using intuitive drag-and-drop.
|
|
49
|
+
|
|
50
|
+
- 💾 Save selected tab groups to Shortcuts for fast opening in the future.
|
|
51
|
+
|
|
52
|
+
- 🤖 Share browser tabs and tab groups with the Kibbutz MCP server.
|
|
53
|
+
|
|
54
|
+
- 🔍 Quickly search across tabs and tab groups.
|
|
55
|
+
|
|
56
|
+
- 🌙 Dark Mode support.
|
|
57
|
+
|
|
58
|
+
## Tools
|
|
59
|
+
|
|
60
|
+
Grants your MCP client access to **view, create, close, ungroup, pin, move, and customize** selected tabs and tab groups.
|
package/build/index.js
CHANGED
|
@@ -16,7 +16,7 @@ let wsPromise = null;
|
|
|
16
16
|
const map = new Map();
|
|
17
17
|
const server = new McpServer({
|
|
18
18
|
name: 'kibbutz-mcp',
|
|
19
|
-
version: '1.0
|
|
19
|
+
version: '1.1.0',
|
|
20
20
|
});
|
|
21
21
|
function findChromeExecutable() {
|
|
22
22
|
const platform = process.platform;
|
|
@@ -141,6 +141,26 @@ server.registerTool('CLOSE_TABS_MCP', {
|
|
|
141
141
|
.describe('List of specific tab identifiers (integers) to close.'),
|
|
142
142
|
},
|
|
143
143
|
}, (args) => sendAndWaitForReply('CLOSE_TABS_MCP', args));
|
|
144
|
+
server.registerTool('PIN_TABS_MCP', {
|
|
145
|
+
title: 'Pin tabs',
|
|
146
|
+
description: 'Pin specific browser tabs using their unique IDs.',
|
|
147
|
+
inputSchema: {
|
|
148
|
+
tabIds: z
|
|
149
|
+
.array(z.number())
|
|
150
|
+
.min(1)
|
|
151
|
+
.describe('List of specific tab identifiers (integers) to pin.'),
|
|
152
|
+
},
|
|
153
|
+
}, (args) => sendAndWaitForReply('PIN_TABS_MCP', args));
|
|
154
|
+
server.registerTool('UNPIN_TABS_MCP', {
|
|
155
|
+
title: 'Unpin tabs',
|
|
156
|
+
description: 'Unpin specific browser tabs using their unique IDs.',
|
|
157
|
+
inputSchema: {
|
|
158
|
+
tabIds: z
|
|
159
|
+
.array(z.number())
|
|
160
|
+
.min(1)
|
|
161
|
+
.describe('List of specific tab identifiers (integers) to unpin.'),
|
|
162
|
+
},
|
|
163
|
+
}, (args) => sendAndWaitForReply('UNPIN_TABS_MCP', args));
|
|
144
164
|
server.registerTool('UNGROUP_TABS_MCP', {
|
|
145
165
|
title: 'Ungroup tabs',
|
|
146
166
|
description: 'Remove specific tabs from their assigned groups using their tab IDs. The tabs will become standalone.',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kibbutz-mcp",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -8,14 +8,16 @@
|
|
|
8
8
|
"build": "tsc && chmod 755 build/index.js"
|
|
9
9
|
},
|
|
10
10
|
"keywords": [],
|
|
11
|
-
"author": "",
|
|
12
|
-
"license": "
|
|
11
|
+
"author": "Amir David",
|
|
12
|
+
"license": "MIT",
|
|
13
13
|
"type": "module",
|
|
14
14
|
"bin": {
|
|
15
15
|
"kibbutz-mcp": "build/index.js"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
|
-
"build"
|
|
18
|
+
"build",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE"
|
|
19
21
|
],
|
|
20
22
|
"dependencies": {
|
|
21
23
|
"@modelcontextprotocol/sdk": "^1.24.3",
|