UNPKG

camoufox-mcp-server

Version:

MCP server for browser automation using Camoufox - a privacy-focused Firefox fork with advanced anti-detection features

65 lines (64 loc) 1.8 kB
{ "name": "camoufox-mcp-server", "version": "1.5.0", "description": "MCP server for browser automation using Camoufox - a privacy-focused Firefox fork with advanced anti-detection features", "keywords": [ "mcp", "camoufox", "browser", "automation", "anti-detection", "fingerprint", "spoofing", "modelcontextprotocol" ], "author": "followthewhit3rabbit", "license": "MIT", "type": "module", "main": "dist/index.js", "bin": { "camoufox-mcp-server": "./dist/index.js" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "git+https://github.com/whit3rabbit/camoufox-mcp.git" }, "bugs": { "url": "https://github.com/whit3rabbit/camoufox-mcp/issues" }, "homepage": "https://github.com/whit3rabbit/camoufox-mcp#readme", "engines": { "node": ">=18.0.0" }, "scripts": { "build": "rimraf dist && tsc", "start": "node dist/index.js", "dev": "tsc --watch", "lint": "npx eslint src/", "test:camoufox": "node test-camoufox.js", "test": "npm run build && python3 tests/test_client.py --mode local", "test:all": "npm run test" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.12.1", "camoufox-js": "^0.4.0", "chalk": "^5.4.1", "zod": "^3.23.8" }, "devDependencies": { "@eslint/js": "^9.28.0", "@types/jest": "^29.5.14", "@types/node": "^22", "eslint": "^9.28.0", "jest": "^30.0.0", "rimraf": "^5.0.5", "ts-jest": "^29.4.0", "typescript": "^5.8.3", "typescript-eslint": "^8.34.0" } }