kibbutz-mcp 1.0.3 → 1.0.4

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.
Files changed (2) hide show
  1. package/build/index.js +21 -1
  2. package/package.json +1 -1
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.3',
19
+ version: '1.0.4',
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",
3
+ "version": "1.0.4",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "scripts": {