UNPKG

insite-mcp

Version:

MCP server for browser automation with 52 tools using Playwright

84 lines (83 loc) 2.79 kB
{ "name": "insite-mcp", "version": "1.2.4", "description": "MCP server for browser automation with 52 tools using Playwright", "main": "dist/server.js", "bin": { "insite-mcp": "./bin/insite.js" }, "type": "module", "scripts": { "install:full": "npm install && npx playwright install && npm run build", "build": "tsc", "prepublishOnly": "npm run build", "dev": "tsx watch src/server.ts", "start": "node dist/server.js", "test": "npm run test:unit && npm run test:integration && npm run test:e2e && npm run cleanup", "test:unit": "node tests/unit/test-server.js && node tests/unit/test-configuration-tools.js && node tests/unit/test-console-network-tools.js && node tests/unit/test-javascript-tools.js && node tests/unit/test-navigation-tools.js && node tests/unit/test-browser-engines.js && npm run cleanup", "test:integration": "node tests/integration/test-mvp-complete.js && node tests/integration/test-mvp-final.js && node tests/integration/test-phase5b-complete.js && npm run cleanup", "test:e2e": "node tests/e2e/test-advanced-interactions.js && node tests/e2e/test-real-interaction.js && npm run cleanup", "test:quick": "node tests/integration/test-mvp-complete.js && npm run cleanup", "test:enterprise": "node tests/integration/test-phase5b-complete.js && npm run cleanup", "cleanup": "node scripts/cleanup-temp.js", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts", "clean": "rimraf dist", "postinstall": "npx playwright install chromium" }, "keywords": [ "insite", "browser-automation", "mcp", "model-context-protocol", "playwright", "web-automation", "testing-framework", "visual-testing", "security-validation", "mcp-server" ], "author": { "name": "Bahram Shamshiri", "email": "jowharshamshiri@gmail.com" }, "license": "MIT", "funding": { "type": "ko-fi", "url": "https://ko-fi.com/jowharshamshiri" }, "dependencies": { "@modelcontextprotocol/sdk": "^0.5.0", "playwright": "^1.47.0", "uuid": "^10.0.0" }, "devDependencies": { "@types/node": "^22.0.0", "@types/uuid": "^10.0.0", "@typescript-eslint/eslint-plugin": "^8.0.0", "@typescript-eslint/parser": "^8.0.0", "eslint": "^9.0.0", "prettier": "^3.3.0", "rimraf": "^6.0.0", "tsx": "^4.16.0", "typescript": "^5.5.0", "vitest": "^2.0.0" }, "engines": { "node": ">=18.0.0" }, "files": [ "dist/", "bin/", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "https://github.com/jowharshamshiri/insite.git" }, "bugs": { "url": "https://github.com/jowharshamshiri/insite/issues" }, "homepage": "https://jowharshamshiri.github.io/insite" }