├── .gitattributes ├── .github └── workflows │ ├── docusaurus-gh-pages.yml │ └── node.js.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docs ├── docs │ ├── .DS_Store │ ├── img │ │ └── mcp-server.png │ ├── intro.mdx │ ├── local-setup │ │ ├── .DS_Store │ │ ├── Installation.md │ │ ├── _category_.json │ │ └── img │ │ │ └── mcp-server.png │ ├── playwright-api │ │ ├── .DS_Store │ │ ├── Examples.md │ │ ├── Supported-Tools.mdx │ │ ├── _category_.json │ │ └── img │ │ │ ├── api-response.png │ │ │ └── playwright-api.png │ ├── playwright-web │ │ ├── Examples.md │ │ ├── Supported-Tools.mdx │ │ ├── _category_.json │ │ └── img │ │ │ ├── mcp-execution.png │ │ │ └── mcp-result.png │ └── release.mdx ├── docusaurus.config.ts ├── package-lock.json ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── YouTubeVideoEmbed.tsx │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── markdown-page.md ├── static │ ├── .DS_Store │ ├── .nojekyll │ └── img │ │ ├── .DS_Store │ │ ├── EA-Icon.jpg │ │ ├── docusaurus-social-card.jpg │ │ ├── docusaurus.png │ │ ├── easy-to-use.svg │ │ ├── favicon.ico │ │ ├── logo.svg │ │ ├── node.svg │ │ ├── playwright.svg │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg └── tsconfig.json ├── image └── playwright_claude.png ├── package.json ├── smithery.yaml ├── src ├── index.ts ├── requestHandler.ts ├── tools.ts └── toolsHandler.ts ├── tests └── test.js └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | package-lock.json linguist-generated=true 2 | -------------------------------------------------------------------------------- /.github/workflows/docusaurus-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/.github/workflows/docusaurus-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/README.md -------------------------------------------------------------------------------- /docs/docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/.DS_Store -------------------------------------------------------------------------------- /docs/docs/img/mcp-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/img/mcp-server.png -------------------------------------------------------------------------------- /docs/docs/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/intro.mdx -------------------------------------------------------------------------------- /docs/docs/local-setup/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/local-setup/.DS_Store -------------------------------------------------------------------------------- /docs/docs/local-setup/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/local-setup/Installation.md -------------------------------------------------------------------------------- /docs/docs/local-setup/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/local-setup/_category_.json -------------------------------------------------------------------------------- /docs/docs/local-setup/img/mcp-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/local-setup/img/mcp-server.png -------------------------------------------------------------------------------- /docs/docs/playwright-api/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/playwright-api/.DS_Store -------------------------------------------------------------------------------- /docs/docs/playwright-api/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/playwright-api/Examples.md -------------------------------------------------------------------------------- /docs/docs/playwright-api/Supported-Tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/playwright-api/Supported-Tools.mdx -------------------------------------------------------------------------------- /docs/docs/playwright-api/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/playwright-api/_category_.json -------------------------------------------------------------------------------- /docs/docs/playwright-api/img/api-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/playwright-api/img/api-response.png -------------------------------------------------------------------------------- /docs/docs/playwright-api/img/playwright-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/playwright-api/img/playwright-api.png -------------------------------------------------------------------------------- /docs/docs/playwright-web/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/playwright-web/Examples.md -------------------------------------------------------------------------------- /docs/docs/playwright-web/Supported-Tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/playwright-web/Supported-Tools.mdx -------------------------------------------------------------------------------- /docs/docs/playwright-web/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/playwright-web/_category_.json -------------------------------------------------------------------------------- /docs/docs/playwright-web/img/mcp-execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/playwright-web/img/mcp-execution.png -------------------------------------------------------------------------------- /docs/docs/playwright-web/img/mcp-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/playwright-web/img/mcp-result.png -------------------------------------------------------------------------------- /docs/docs/release.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docs/release.mdx -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/YouTubeVideoEmbed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/src/components/HomepageFeatures/YouTubeVideoEmbed.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/static/.DS_Store -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/static/img/.DS_Store -------------------------------------------------------------------------------- /docs/static/img/EA-Icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/static/img/EA-Icon.jpg -------------------------------------------------------------------------------- /docs/static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/easy-to-use.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/static/img/easy-to-use.svg -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/static/img/node.svg -------------------------------------------------------------------------------- /docs/static/img/playwright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/static/img/playwright.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /image/playwright_claude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/image/playwright_claude.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/package.json -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/requestHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/src/requestHandler.ts -------------------------------------------------------------------------------- /src/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/src/tools.ts -------------------------------------------------------------------------------- /src/toolsHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/src/toolsHandler.ts -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/tests/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lars-hagen/mcp-playwright-cdp/HEAD/tsconfig.json --------------------------------------------------------------------------------