You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
143
+
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Copy file name to clipboardExpand all lines: src/puppeteer/index.ts
+81-11Lines changed: 81 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,9 @@ const TOOLS: Tool[] = [
22
22
inputSchema: {
23
23
type: "object",
24
24
properties: {
25
-
url: {type: "string"},
25
+
url: {type: "string",description: "URL to navigate to"},
26
+
launchOptions: {type: "object",description: "PuppeteerJS LaunchOptions. Default null. If changed and not null, browser restarts. Example: { headless: true, args: ['--no-sandbox'] }"},
27
+
allowDangerous: {type: "boolean",description: "Allow dangerous LaunchOptions that reduce security. When false, dangerous args like --no-sandbox will throw errors. Default false."},
0 commit comments