{ "name": "browser_navigate", "description": "Navigate the active tab to a URL, or open a URL in a new tab.", "requires_confirmation": false, "inputSchema": { "type": "object", "properties": { "url": { "type": "string", "description": "Target URL to navigate to" }, "newTab": { "type": "boolean", "description": "If true, open in a new tab instead of the active one" } }, "required": [ "url" ] } }