@olib-ai/owl-browser-mcp 1.0.4 → 1.0.5
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 +16 -10
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -20431,13 +20431,14 @@ var openapi_default = {
|
|
|
20431
20431
|
},
|
|
20432
20432
|
proxy_type: {
|
|
20433
20433
|
type: "string",
|
|
20434
|
-
description: "Type of proxy server to use. Options: 'http', 'https', 'socks4', 'socks5', 'socks5h'. Use 'socks5h' for remote DNS resolution (recommended for privacy)",
|
|
20434
|
+
description: "Type of proxy server to use. Options: 'http', 'https', 'socks4', 'socks5', 'socks5h', 'gae'. Use 'socks5h' for remote DNS resolution (recommended for privacy). Use 'gae' for private app proxy",
|
|
20435
20435
|
enum: [
|
|
20436
20436
|
"http",
|
|
20437
20437
|
"https",
|
|
20438
20438
|
"socks4",
|
|
20439
20439
|
"socks5",
|
|
20440
|
-
"socks5h"
|
|
20440
|
+
"socks5h",
|
|
20441
|
+
"gae"
|
|
20441
20442
|
]
|
|
20442
20443
|
},
|
|
20443
20444
|
proxy_host: {
|
|
@@ -20464,6 +20465,10 @@ var openapi_default = {
|
|
|
20464
20465
|
type: "string",
|
|
20465
20466
|
description: "Path to custom CA certificate file (.pem, .crt, .cer) for SSL interception proxies. Required when using Charles Proxy, mitmproxy, or similar HTTPS inspection tools"
|
|
20466
20467
|
},
|
|
20468
|
+
proxy_ca_key_path: {
|
|
20469
|
+
type: "string",
|
|
20470
|
+
description: "Path to CA private key file for GAE/private app proxy MITM. Required for generating per-domain certificates when using 'gae' proxy type"
|
|
20471
|
+
},
|
|
20467
20472
|
proxy_trust_custom_ca: {
|
|
20468
20473
|
type: "boolean",
|
|
20469
20474
|
description: "Trust the custom CA certificate for SSL interception. Enable when using Charles Proxy, mitmproxy, or similar tools that intercept HTTPS traffic. Default: false"
|
|
@@ -22299,8 +22304,8 @@ var openapi_default = {
|
|
|
22299
22304
|
description: "CSS selector or natural language description for the element to capture. Required when mode is 'element'. Examples: 'div.profile', '#submit-btn', 'the login form'"
|
|
22300
22305
|
},
|
|
22301
22306
|
scale: {
|
|
22302
|
-
type: "
|
|
22303
|
-
description: "Scale percentage for the output image (1-100). Default is 100 (no scaling). Example: 50 will return an image at 50
|
|
22307
|
+
type: "string",
|
|
22308
|
+
description: "Scale percentage for the output image (1-100). Default is 100 (no scaling). Example: 50 will return an image at 50%% of the original size (half width and height)."
|
|
22304
22309
|
}
|
|
22305
22310
|
},
|
|
22306
22311
|
required: [
|
|
@@ -22552,11 +22557,11 @@ var openapi_default = {
|
|
|
22552
22557
|
description: "Starting URL to begin extraction from"
|
|
22553
22558
|
},
|
|
22554
22559
|
depth: {
|
|
22555
|
-
type: "
|
|
22560
|
+
type: "string",
|
|
22556
22561
|
description: "How many link levels to follow from the starting page. Default: 2. Higher values extract more pages but take longer"
|
|
22557
22562
|
},
|
|
22558
22563
|
max_pages: {
|
|
22559
|
-
type: "
|
|
22564
|
+
type: "string",
|
|
22560
22565
|
description: "Maximum number of pages to extract. Default: 5. Limits total extraction to prevent runaway crawling"
|
|
22561
22566
|
},
|
|
22562
22567
|
follow_external: {
|
|
@@ -22582,10 +22587,10 @@ var openapi_default = {
|
|
|
22582
22587
|
},
|
|
22583
22588
|
exclude_patterns: {
|
|
22584
22589
|
type: "string",
|
|
22585
|
-
description:
|
|
22590
|
+
description: 'Array of URL patterns to skip (glob patterns). Example: ["*/login*", "*/admin/*"]'
|
|
22586
22591
|
},
|
|
22587
22592
|
timeout_per_page: {
|
|
22588
|
-
type: "
|
|
22593
|
+
type: "string",
|
|
22589
22594
|
description: "Timeout per page in milliseconds. Default: 10000 (10 seconds)"
|
|
22590
22595
|
}
|
|
22591
22596
|
},
|
|
@@ -24926,13 +24931,14 @@ var openapi_default = {
|
|
|
24926
24931
|
},
|
|
24927
24932
|
type: {
|
|
24928
24933
|
type: "string",
|
|
24929
|
-
description: "Proxy protocol type: 'http' (HTTP proxy), 'https' (HTTPS proxy), 'socks4' (SOCKS4), 'socks5' (SOCKS5 with local DNS), 'socks5h' (SOCKS5 with remote DNS - most private)",
|
|
24934
|
+
description: "Proxy protocol type: 'http' (HTTP proxy), 'https' (HTTPS proxy), 'socks4' (SOCKS4), 'socks5' (SOCKS5 with local DNS), 'socks5h' (SOCKS5 with remote DNS - most private), 'gae' (private app proxy)",
|
|
24930
24935
|
enum: [
|
|
24931
24936
|
"http",
|
|
24932
24937
|
"https",
|
|
24933
24938
|
"socks4",
|
|
24934
24939
|
"socks5",
|
|
24935
|
-
"socks5h"
|
|
24940
|
+
"socks5h",
|
|
24941
|
+
"gae"
|
|
24936
24942
|
]
|
|
24937
24943
|
},
|
|
24938
24944
|
host: {
|