n8n-nodes-smart-browser-automation 1.1.9 → 1.1.10

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.
@@ -235,7 +235,7 @@ class SmartBrowserAutomation {
235
235
  const credentials = await this.getCredentials('smartBrowserAutomationApi');
236
236
  await sessionManager.initialize(credentials.mcpEndpoint, true, input.endpoint);
237
237
  return {
238
- content: [{ type: 'text', text: `Successfully connected to browser at ${input.endpoint}` }],
238
+ content: [{ type: 'text', text: `Connected to browser at ${input.endpoint}. You can now use tools like browser_navigate, browser_click, browser_type, etc.` }],
239
239
  isError: false
240
240
  };
241
241
  }
@@ -61,7 +61,7 @@ async function createDynamicBrowserTools(credentials) {
61
61
  return {
62
62
  name: toolName,
63
63
  displayName: displayName,
64
- description: mcpTool.description || `Execute ${displayName} browser action`,
64
+ description: mcpTool.description || `Execute ${displayName} action in the browser. Use this tool when you need to ${displayName.toLowerCase()}.`,
65
65
  properties: mcpSchemaToN8nProperties(mcpTool.inputSchema),
66
66
  async execute(toolInput) {
67
67
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-smart-browser-automation",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "n8n node for AI-driven browser automation using MCP",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",