package.json•1.08 kB
{
"name": "mcp-mqscript-server",
"version": "1.0.0",
"description": "MCP Server for MQScript - A mobile automation scripting language server that provides tools for touch commands, color detection, UI controls, device operations, file handling, and standard library functions",
"main": "build/index.js",
"type": "module",
"bin": {
"mcp-mqscript-server": "./build/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node build/index.js",
"test": "jest"
},
"keywords": [
"mcp",
"model-context-protocol",
"mqscript",
"mobile-automation",
"touch-commands",
"color-detection",
"ui-controls",
"device-operations"
],
"author": "MCP MQScript Server",
"license": "MIT",
"files": [
"build/**/*",
"README.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}