@olib-ai/owl-browser-mcp 2.0.4 → 2.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 +18 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -20373,7 +20373,7 @@ var openapi_default = {
|
|
|
20373
20373
|
},
|
|
20374
20374
|
servers: [
|
|
20375
20375
|
{
|
|
20376
|
-
url: "http://
|
|
20376
|
+
url: "http://localhost",
|
|
20377
20377
|
description: "Current server"
|
|
20378
20378
|
}
|
|
20379
20379
|
],
|
|
@@ -20442,10 +20442,12 @@ var openapi_default = {
|
|
|
20442
20442
|
enum: [
|
|
20443
20443
|
"html",
|
|
20444
20444
|
"text",
|
|
20445
|
-
"markdown"
|
|
20445
|
+
"markdown",
|
|
20446
|
+
"pngView",
|
|
20447
|
+
"pngFull"
|
|
20446
20448
|
]
|
|
20447
20449
|
},
|
|
20448
|
-
description: "Output format. html=raw HTML, text=extracted text, markdown=markdown conversion. Default: html"
|
|
20450
|
+
description: "Output format. html=raw HTML, text=extracted text, markdown=markdown conversion, pngView=viewport screenshot as PNG image, pngFull=fullpage screenshot as PNG image. Default: html"
|
|
20449
20451
|
},
|
|
20450
20452
|
{
|
|
20451
20453
|
name: "os",
|
|
@@ -20598,6 +20600,19 @@ var openapi_default = {
|
|
|
20598
20600
|
timezone: {
|
|
20599
20601
|
type: "string",
|
|
20600
20602
|
description: "Override browser timezone. IANA timezone format (e.g., 'America/New_York', 'Europe/London', 'Asia/Tokyo'). If not set, falls back to: 1) proxy-detected timezone (if proxy configured with spoof_timezone), 2) VM profile timezone, 3) system default. This parameter works without proxy configuration."
|
|
20603
|
+
},
|
|
20604
|
+
screen_size: {
|
|
20605
|
+
type: "string",
|
|
20606
|
+
description: "Screen resolution for the browser context. Format: 'WIDTHxHEIGHT'. If not set, a random screen size is selected from the monitor catalog.",
|
|
20607
|
+
enum: [
|
|
20608
|
+
"1920x1080",
|
|
20609
|
+
"2560x1440",
|
|
20610
|
+
"3440x1440",
|
|
20611
|
+
"3840x2160",
|
|
20612
|
+
"3840x1600",
|
|
20613
|
+
"5120x2160",
|
|
20614
|
+
"5120x1440"
|
|
20615
|
+
]
|
|
20601
20616
|
}
|
|
20602
20617
|
}
|
|
20603
20618
|
}
|