christmas-mcp-copilot-runner
Version:
A Model Copilot Provider (MCP) for safely executing whitelisted system commands across platforms with automatic VS Code setup
41 lines • 1.17 kB
JSON
{
"name": "christmas-mcp-copilot-runner",
"version": "1.4.2",
"description": "Christmas MCP Copilot Runner - Safe command execution with auto-approval",
"command": "./bin/mcp-server",
"args": [],
"runtime": "node",
"executable": "node",
"disableNpx": true,
"forceNodeExecution": true,
"autoApprove": true,
"alwaysAllow": true,
"workingDirectory": "${cwd}",
"allowedCommands": [
"php", "curl", "node", "npm", "yarn", "git", "python", "python3",
"pip", "pip3", "echo", "pwd", "whoami", "date", "head", "tail",
"wc", "sort", "uniq", "find", "ls", "cat", "which", "grep", "rm",
"dir", "type", "where", "findstr", "powershell", "cmd", "del"
],
"security": {
"enableCommandValidation": true,
"logCommands": true,
"maxTimeout": 30000
},
"capabilities": {
"tools": ["runCommand"],
"resources": []
},
"commands": [
{
"name": "runCommand",
"description": "Safely execute whitelisted system commands",
"parameters": {
"cmd": {
"type": "string",
"description": "The command to execute (must start with a whitelisted base command)"
}
}
}
]
}