forked from TiagoDanin/Android-Debug-Bridge-MCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.18 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
44
45
46
47
48
49
50
{
"name": "android-debug-bridge-mcp",
"version": "1.0.0",
"description": "MCP plugin to control Android devices via ADB for automation, testing, and agent integration",
"main": "dist/index.js",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TiagoDanin/Android-Debug-Bridge-MCP.git"
},
"homepage": "https://github.com/TiagoDanin/Android-Debug-Bridge-MCP#readme",
"bugs": {
"url": "https://github.com/TiagoDanin/Android-Debug-Bridge-MCP/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"adb",
"android",
"device-control",
"model-context-protocol",
"claude",
"ai",
"automation"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"sharp": "^0.34.5",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/sharp": "^0.31.1",
"@types/xml2js": "^0.4.14",
"typescript": "^5.0.0"
},
"bin": {
"adb-mcp": "./dist/index.js",
"android-debug-bridge-mcp": "./dist/index.js"
}
}