-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "edge-control-mcp",
"version": "0.2.0",
"description": "Claude Code MCP server for Microsoft Edge browser control via CDP",
"repository": {
"type": "git",
"url": "git+https://github.com/amadeus1171/EdgeControl.git"
},
"homepage": "https://github.com/amadeus1171/EdgeControl#readme",
"bugs": "https://github.com/amadeus1171/EdgeControl/issues",
"type": "module",
"main": "dist/index.js",
"bin": {
"edge-control-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"postinstall": "node -e \"console.log('\\n\\x1b[36medge-control-mcp installed.\\x1b[0m\\n\\nTo create the Edge (Debug) shortcut, run:\\n powershell -ExecutionPolicy Bypass -File node_modules/edge-control-mcp/scripts/create-shortcut.ps1\\n\\nOr if installed globally:\\n powershell -ExecutionPolicy Bypass -File \\\"' + require('path').join(__dirname, 'scripts', 'create-shortcut.ps1') + '\\\"\\n')\""
},
"keywords": [
"mcp",
"edge",
"cdp",
"claude-code",
"browser"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"chrome-remote-interface": "^0.34.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/chrome-remote-interface": "^0.33.0",
"@types/node": "^25.5.2",
"typescript": "^6.0.2"
}
}