{ "name": "replicant-mcp", "version": "1.6.7", "description": "Android MCP server for AI-assisted Android development", "mcpName": "io.github.thecombatwombat/replicant-mcp", "type": "module", "main": "dist/index.js", "bin": { "replicant-mcp": "dist/index.js" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "vitest --run", "posttest": "npm run check:contracts", "test:watch": "vitest", "test:unit": "vitest --run tests/services tests/adapters tests/tools", "test:integration": "vitest --run tests/integration", "test:coverage": "vitest --run --coverage", "check-prereqs": "bash scripts/check-prerequisites.sh", "smoke-test": "bash scripts/smoke-test.sh", "test:device": "tsx scripts/real-device-test.ts", "start": "npm run build && node dist/index.js", "lint": "eslint src/ tests/", "lint:fix": "eslint src/ tests/ --fix", "check-complexity": "bash scripts/check-complexity.sh", "validate": "npm run build && npm run lint && npm run check-complexity && npm test", "prepublishOnly": "npm run build && npm test", "release": "bash scripts/release.sh", "release:minor": "bash scripts/release.sh minor", "release:major": "bash scripts/release.sh major", "generate:contracts": "tsx scripts/generate-contract.ts && tsx scripts/generate-token-snapshot.ts", "check:contracts": "tsx scripts/check-contracts.ts && tsx scripts/check-token-snapshot.ts", "test:contracts": "tsx scripts/contract-test.ts" }, "keywords": [ "mcp", "model-context-protocol", "android", "adb", "gradle", "emulator", "ui-automation", "ai", "llm" ], "author": "Archit Joshi", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/thecombatwombat/replicant-mcp.git" }, "files": [ "dist/", "docs/rtfm/", "docs/contracts/", "README.md", "LICENSE", "icon.png" ], "engines": { "node": ">=18.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.25.3", "commander": "^14.0.2", "execa": "^9.6.1", "sharp": "^0.34.5", "tesseract.js": "^7.0.0", "yaml": "^2.8.2", "zod": "^4.3.5" }, "devDependencies": { "@anthropic-ai/mcpb": "^2.1.2", "@eslint/js": "^10.0.1", "@types/node": "^25.0.9", "@types/sharp": "^0.31.1", "@vitest/coverage-v8": "^4.0.17", "eslint": "^10.0.2", "tsx": "^4.21.0", "typescript": "^5.9.3", "typescript-eslint": "^8.56.1", "vitest": "^4.0.17" } }