UNPKG

browser-connect-mcp

Version:

MCP server for browser DevTools and backend debugging - analyze console logs, network requests, and backend logs with AI assistance

83 lines (82 loc) 2.13 kB
{ "name": "browser-connect-mcp", "version": "0.4.3", "description": "MCP server for browser DevTools and backend debugging - analyze console logs, network requests, and backend logs with AI assistance", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "browser-connect-mcp": "./dist/index.js" }, "files": [ "dist/**/*", "README.md", "LICENSE", "package.json" ], "scripts": { "build": "tsc", "dev": "tsx watch src/index.ts", "start": "node dist/index.js", "test": "jest", "lint": "eslint src --ext .ts", "format": "prettier --write \"src/**/*.ts\"", "prepublishOnly": "npm run build" }, "keywords": [ "mcp", "model-context-protocol", "browser", "devtools", "debugging", "chrome-devtools-protocol", "ai-debugging", "claude", "anthropic", "llm-tools", "backend-debugging", "log-analysis", "nodejs-debugging", "full-stack-debugging" ], "author": "Khaled Bin A Quadir", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/perception30/browser-connect-mcp.git" }, "bugs": { "url": "https://github.com/perception30/browser-connect-mcp/issues" }, "homepage": "https://github.com/perception30/browser-connect-mcp#readme", "engines": { "node": ">=18.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "^0.5.0", "@types/ws": "^8.18.1", "chalk": "^5.4.1", "chrome-remote-interface": "^0.33.0", "commander": "^14.0.0", "puppeteer-core": "^21.7.0", "tail": "^2.2.6", "winston": "^3.11.0", "ws": "^8.18.2", "zod": "^3.25.56" }, "devDependencies": { "@types/chrome-remote-interface": "^0.31.0", "@types/commander": "^2.12.0", "@types/jest": "^29.5.11", "@types/node": "^20.10.5", "@types/tail": "^2.2.3", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "eslint": "^8.56.0", "jest": "^29.7.0", "prettier": "^3.1.1", "ts-jest": "^29.1.1", "tsx": "^4.7.0", "typescript": "^5.3.3" } }