browser-x-mcp
Version:
AI-Powered Browser Automation with Advanced Form Testing - A Model Context Provider (MCP) server that enables intelligent browser automation with form testing, element extraction, and comprehensive logging
71 lines • 2.22 kB
JSON
{
"name": "browser-x-mcp",
"version": "1.0.0-beta.1",
"description": "AI-Powered Browser Automation with Advanced Form Testing - A Model Context Provider (MCP) server that enables intelligent browser automation with form testing, element extraction, and comprehensive logging",
"main": "src/server/index.js",
"type": "module",
"scripts": {
"start": "node src/server/index.js",
"test": "node test/ai-mcp-interaction-test.js",
"test:ai": "node test/ai-mcp-interaction-test.js",
"test:ai:resume": "node test/ai-mcp-interaction-test.js --resume",
"test:mock": "node -e \"import('./test/ai-mcp-interaction-test.js').then(m => new m.MCPAIInteractionAgent({useMockAI: true, maxIterations: 5}).init().then(a => a.runInteractionTest()).then(a => a.cleanup()))\"",
"test:report": "node test/ai-mcp-interaction-test.js --generate-report",
"test:page": "open test/input-types-test-page.html",
"dev": "node --watch src/server/index.js",
"docs": "jsdoc -c jsdoc.conf.json",
"lint": "eslint src/ test/ tools/",
"lint:fix": "eslint src/ test/ tools/ --fix",
"screenshot:analyze": "node tools/screenshot-analyzer/index.js"
},
"keywords": [
"mcp",
"browser-automation",
"ai-testing",
"form-testing",
"virtual-canvas",
"ai",
"playwright",
"browser-tools",
"model-context-provider",
"intelligent-automation",
"screenshot-analysis",
"element-extraction",
"beta"
],
"author": "RND-PRO Team <https://rnd-pro.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/rnd-pro/browser-x-mcp.git"
},
"bugs": {
"url": "https://github.com/rnd-pro/browser-x-mcp/issues"
},
"homepage": "https://github.com/rnd-pro/browser-x-mcp#readme",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"playwright": "^1.40.0",
"sharp": "^0.33.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"jsdoc": "^4.0.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"files": [
"src/",
"tools/",
"examples/",
"docs/",
"assets/",
"README.md",
"LICENSE"
],
"bin": {
"browser-x-mcp": "./src/server/index.js"
}
}