abu-browser-bridge 0.4.0 → 0.5.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/dist/index.js CHANGED
@@ -123,7 +123,7 @@ async function main() {
123
123
  // 2. Create MCP server
124
124
  const mcpServer = new McpServer({
125
125
  name: 'abu-browser-bridge',
126
- version: '0.3.0',
126
+ version: '0.5.1',
127
127
  });
128
128
  // 3. Register browser tools
129
129
  registerTools(mcpServer);
package/dist/tools.js CHANGED
@@ -30,7 +30,7 @@ function formatResult(response) {
30
30
  // --- Register all tools ---
31
31
  export function registerTools(server) {
32
32
  // 1. browser_get_tabs
33
- server.tool('get_tabs', 'Get a list of all open browser tabs with their URLs and titles. Use this first to find the target tab.', async () => {
33
+ server.tool('get_tabs', 'Get all open Chrome browser tabs grouped by window. Returns a summary with the current window/tab info, plus a list of windows each containing their tabs. Use this first to find the target tab ID for other browser actions.', async () => {
34
34
  ensureConnected();
35
35
  const res = await sendToExtension('get_tabs');
36
36
  return { content: [{ type: 'text', text: formatResult(res) }] };
package/dist/wsServer.js CHANGED
@@ -70,7 +70,7 @@ function startDiscoveryServer() {
70
70
  pid: process.pid,
71
71
  extensionConnected: isExtensionConnected(),
72
72
  uptime: Math.round((Date.now() - startTime) / 1000),
73
- version: '0.1.1',
73
+ version: '0.5.1',
74
74
  }));
75
75
  return;
76
76
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abu-browser-bridge",
3
- "version": "0.4.0",
3
+ "version": "0.5.1",
4
4
  "description": "MCP Server that bridges Abu AI assistant with Chrome Extension for browser automation",
5
5
  "type": "module",
6
6
  "license": "MIT",