package.json•607 B
{
"name": "mcp-pc-control-server",
"version": "1.0.0",
"description": "MCP server for PC control with file operations and command execution",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node build/index.js"
},
"keywords": [
"mcp",
"server",
"pc-control",
"file-operations"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4"
},
"devDependencies": {
"@types/node": "^22.10.1",
"typescript": "^5.7.2"
}
}