-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "scrcpy-mcp",
"version": "0.4.1",
"mcpName": "io.github.JuanCF/scrcpy-mcp",
"description": "MCP server for Android device control via ADB and scrcpy — gives AI agents vision and control over Android devices",
"keywords": [
"mcp",
"mcp-server",
"android",
"adb",
"scrcpy",
"model-context-protocol",
"ai",
"automation",
"mobile",
"screen-control"
],
"repository": {
"type": "git",
"url": "https://github.com/JuanCF/scrcpy-mcp.git"
},
"author": "Juan C. Flores",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"bin": {
"scrcpy-mcp": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepublishOnly": "npm run build",
"pack:bundle": "rm -rf node_modules && npm ci --omit=dev --omit=optional && mcpb pack",
"pack:publish": "smithery mcp publish ./scrcpy-mcp.mcpb -n JuanCF/scrcpy-mcp"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22",
"eslint": "^10.0.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^4.3.6"
},
"optionalDependencies": {
"ffmpeg-static": "^5.3.0"
}
}