File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " webdriverio-mcp" ,
3- "version" : " 1.0.1" ,
3+ "repository" : {
4+ "type" : " git" ,
5+ "url" : " git://github.com/Winify/webdriverio-mcp.git"
6+ },
7+ "version" : " 1.0.2" ,
48 "description" : " MCP server with WebdriverIO for browser automation" ,
59 "main" : " ./lib/server.js" ,
610 "module" : " ./lib/server.js" ,
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ import {z} from 'zod';
55
66export const startBrowserToolArguments = {
77 headless : z . boolean ( ) . optional ( ) ,
8- windowWidth : z . number ( ) . min ( 800 ) . max ( 3840 ) . optional ( ) ,
9- windowHeight : z . number ( ) . min ( 600 ) . max ( 2160 ) . optional ( ) ,
8+ windowWidth : z . number ( ) . min ( 400 ) . max ( 3840 ) . optional ( ) ,
9+ windowHeight : z . number ( ) . min ( 400 ) . max ( 2160 ) . optional ( ) ,
1010} ;
1111
1212const state : { browsers : Map < string , WebdriverIO . Browser > , currentSession : string | null } = {
You can’t perform that action at this time.
0 commit comments