package.json•1.55 kB
{
"name": "@browserbasehq/mcp",
"version": "1.0.6",
"description": "MCP server for browser automation using browserbase",
"author": "Browserbase, Inc. (https://browserbase.com)",
"homepage": "https://browserbase.com",
"module": "./src/index.ts",
"type": "module",
"main": "./cli.js",
"engines": {
"node": ">=18"
},
"files": [
"../assets/browserbase-mcp.png",
"dist",
"cli.js",
"index.d.ts",
"index.js",
"config.d.ts",
"config.js"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js && shx chmod +x cli.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"smithery": "npx @smithery/cli dev",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"test-local": "npm pack && npm install -g $(pwd)/$(ls -t *.tgz | head -1) && mcp-server-browserbase"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"default": "./cli.js"
}
},
"dependencies": {
"@browserbasehq/sdk": "^2.5.0",
"@modelcontextprotocol/sdk": "^1.10.2",
"@types/yaml": "^1.9.6",
"chromium-bidi": "^5.3.1",
"commander": "^13.1.0",
"dotenv": "^16.5.0",
"playwright": "^1.52.0",
"yaml": "^2.7.1",
"zod": "^3.24.3",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@smithery/cli": "^1.2.4",
"shx": "^0.3.4",
"tsx": "^4.19.4",
"typescript": "^5.6.2"
},
"bin": {
"mcp-server-browserbase": "cli.js"
},
"publishConfig": {
"access": "public"
}
}