package.json•1.91 kB
{
"name": "mcp-browser-server",
"version": "1.1.0",
"type": "module",
"main": "build/index.js",
"bin": {
"mcp-browser-server": "./build/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc && node build/index.js",
"start": "node build/index.js",
"test": "node tests/simple-test.mjs",
"test:demo": "node tests/demo-test.mjs",
"test:scroll": "node tests/scroll-test.mjs",
"test:scroll-enhanced": "node tests/scroll-test-enhanced.mjs",
"test:ai": "node tests/ai-analysis-test.mjs",
"test:ai-simple": "node tests/simple-ai-test.mjs",
"test:status": "node tests/status-check.mjs",
"test:all": "npm run test && npm run test:demo && npm run test:scroll && npm run test:scroll-enhanced && npm run test:ai-simple",
"clean": "node scripts/cleanup.mjs",
"clean:full": "npm run clean && rm -rf node_modules package-lock.json",
"dev-helper": "node scripts/dev.mjs",
"setup": "node scripts/dev.mjs setup",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"browser",
"automation",
"playwright",
"testing"
],
"author": "Wladislav Cugunov <github@wlacu.com> (https://github.com/Wladastic)",
"license": "SEE LICENSE IN LICENSE",
"description": "Model Context Protocol server for browser automation using Playwright",
"repository": {
"type": "git",
"url": "https://github.com/Wladastic/mcp-browser-server.git"
},
"bugs": {
"url": "https://github.com/Wladastic/mcp-browser-server/issues"
},
"homepage": "https://github.com/Wladastic/mcp-browser-server#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Wladastic"
},
"devDependencies": {
"@types/node": "^22.15.29",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"ollama": "^0.5.16",
"playwright": "^1.52.0",
"zod": "^3.25.48"
}
}