UNPKG

@landicefu/android-adb-mcp-server

Version:

This MCP server provides tools for interacting with Android devices through the Android Debug Bridge (ADB). It enables AI assistants to perform common Android development and testing operations.

54 lines (52 loc) 1.44 kB
{ "name": "@landicefu/android-adb-mcp-server", "version": "1.0.2", "description": "This MCP server provides tools for interacting with Android devices through the Android Debug Bridge (ADB). It enables AI assistants to perform common Android development and testing operations.", "main": "build/index.js", "type": "module", "bin": { "android-adb-mcp-server": "./build/index.js" }, "files": [ "build/", "src/", "README.md", "LICENSE" ], "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "start": "node build/index.js", "dev": "tsc -w", "test": "echo \"Error: no test specified\" && exit 1", "prepublishOnly": "npm run build" }, "keywords": [ "mcp", "android", "adb", "model-context-protocol", "ai-tools", "android-debug-bridge" ], "author": "Landice Fu <landice.fu@gmail.com>", "license": "ISC", "repository": { "type": "git", "url": "git+https://github.com/landicefu/android-adb-mcp-server.git" }, "bugs": { "url": "https://github.com/landicefu/android-adb-mcp-server/issues" }, "homepage": "https://github.com/landicefu/android-adb-mcp-server#readme", "dependencies": { "@modelcontextprotocol/sdk": "^1.6.1", "sharp": "^0.33.5" }, "devDependencies": { "@types/node": "^22.13.7", "typescript": "^5.8.2" }, "engines": { "node": ">=16.0.0" } }