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
Copy file name to clipboardExpand all lines: src/lib/server.js
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -17,11 +17,10 @@ import { createRequire } from 'module';
17
17
constrequire=createRequire(import.meta.url);
18
18
const{ version }=require('../../package.json');
19
19
20
-
constserver=newMcpServer({
21
-
name: "MCP Selenium",
22
-
version,
23
-
instructions: "To understand the current page state, read the accessibility://current resource. It provides a structured accessibility tree that's faster and more reliable for finding element locators."
24
-
});
20
+
constserver=newMcpServer(
21
+
{name: "MCP Selenium", version },
22
+
{instructions: "To understand the current page state, read the accessibility://current resource. It provides a structured accessibility tree that's faster and more reliable for finding element locators."}
23
+
);
25
24
26
25
// BiDi imports — loaded dynamically to avoid hard failures if not available
0 commit comments