UNPKG

@mrtkrcm/mcp-puppeteer

Version:

Model Context Protocol server for browser automation using Puppeteer

59 lines (58 loc) 1.42 kB
{ "name": "@mrtkrcm/mcp-puppeteer", "version": "0.1.0", "description": "Model Context Protocol server for browser automation using Puppeteer", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "src", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "test:example": "node examples/basic-usage.js", "start": "node dist/index.js", "start:remote": "PUPPETEER_BROWSER_WS_ENDPOINT=ws://localhost:3000 node dist/index.js", "prepublishOnly": "npm run build && npm test" }, "keywords": [ "mcp", "puppeteer", "browser-automation", "testing", "accessibility", "screenshots", "llm" ], "author": "mrtkrcm", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/mrtkrcm/mcp-puppeteer.git" }, "bugs": { "url": "https://github.com/mrtkrcm/mcp-puppeteer/issues" }, "homepage": "https://github.com/mrtkrcm/mcp-puppeteer#readme", "dependencies": { "@modelcontextprotocol/sdk": "^1.6.1", "puppeteer": "^22.8.2", "js-yaml": "^4.1.0" }, "devDependencies": { "@jest/globals": "^29.0.0", "@types/node": "^20.0.0", "jest": "^29.0.0", "typescript": "^5.0.0" }, "engines": { "node": ">=18" }, "publishConfig": { "access": "public" } }