UNPKG

chrome-mcp

Version:

Model Context Protocol (MCP) server for controlling Google Chrome browser on macOS. Enables AI assistants like Claude to automate Chrome via DevTools Protocol.

53 lines (52 loc) 1.27 kB
{ "name": "chrome-mcp", "version": "1.0.0", "description": "Model Context Protocol (MCP) server for controlling Google Chrome browser on macOS. Enables AI assistants like Claude to automate Chrome via DevTools Protocol.", "type": "module", "main": "build/index.js", "bin": { "chrome-mcp": "build/index.js" }, "scripts": { "build": "tsc", "watch": "tsc --watch", "prepare": "npm run build", "start": "node build/index.js" }, "keywords": [ "mcp", "model-context-protocol", "chrome", "chrome-automation", "browser-control", "browser-automation", "devtools", "claude", "ai", "automation", "macos" ], "author": "moe03", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/moe03/chrome-mcp.git" }, "bugs": { "url": "https://github.com/moe03/chrome-mcp/issues" }, "homepage": "https://github.com/moe03/chrome-mcp#readme", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.4", "chrome-launcher": "^1.1.2", "chrome-remote-interface": "^0.33.2" }, "devDependencies": { "@types/chrome-remote-interface": "^0.31.14", "@types/node": "^22.10.2", "typescript": "^5.7.2" }, "engines": { "node": ">=18.0.0" } }