webclaw-mcp 0.6.0 → 0.6.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.
@@ -75,7 +75,7 @@ describe('MCP Protocol integration (in-process)', () => {
75
75
  const serverVersion = mcpClient.getServerVersion();
76
76
  expect(serverVersion).toBeDefined();
77
77
  expect(serverVersion.name).toBe('webclaw');
78
- expect(serverVersion.version).toBe('0.5.0');
78
+ expect(serverVersion.version).toBe('0.6.1');
79
79
  });
80
80
  // --- tools/list ---
81
81
  it('lists all 18 tools', async () => {
@@ -93,7 +93,7 @@ describe('MCP Server stdio integration', () => {
93
93
  const initResponse = collector.responses.find((r) => r.id === 1 && r.result);
94
94
  expect(initResponse).toBeDefined();
95
95
  expect(initResponse.result.serverInfo.name).toBe('webclaw');
96
- expect(initResponse.result.serverInfo.version).toBe('0.5.0');
96
+ expect(initResponse.result.serverInfo.version).toBe('0.6.1');
97
97
  }, 20000);
98
98
  it('lists 18 tools via JSON-RPC after initialization', async () => {
99
99
  child = await spawnAndWaitReady();
@@ -57,7 +57,7 @@ describe('v0.4.0 New Tools E2E (MCP Protocol)', () => {
57
57
  // =========================================
58
58
  it('server reports version 0.4.0', () => {
59
59
  const info = mcpClient.getServerVersion();
60
- expect(info.version).toBe('0.5.0');
60
+ expect(info.version).toBe('0.6.1');
61
61
  });
62
62
  it('lists exactly 18 tools', async () => {
63
63
  const { tools } = await mcpClient.listTools();
package/dist/server.js CHANGED
@@ -21,7 +21,7 @@ function formatErrorResponse(payload) {
21
21
  export function createWebClawServer(options) {
22
22
  const server = new McpServer({
23
23
  name: 'webclaw',
24
- version: '0.5.0',
24
+ version: '0.6.1',
25
25
  });
26
26
  const wsClient = options.wsClient;
27
27
  // --- Tool: navigate_to ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webclaw-mcp",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "WebClaw MCP Server - WebMCP-native browser agent for Chrome",
5
5
  "type": "module",
6
6
  "license": "MIT",