UNPKG

christmas-mcp-copilot-runner

Version:

A Model Copilot Provider (MCP) for safely executing whitelisted system commands across platforms with automatic VS Code setup

78 lines (77 loc) 2.2 kB
{ "name": "christmas-mcp-copilot-runner", "version": "1.4.8", "description": "A Model Copilot Provider (MCP) for safely executing whitelisted system commands across platforms with automatic VS Code setup", "main": "src/index.js", "bin": { "christmas-mcp-copilot-runner": "bin/cli.js", "mcp-setup-vscode": "bin/setup-vscode.js", "mcp-config-wizard": "bin/config-wizard.js" }, "scripts": { "start": "node src/index.js", "test": "node test-platform.js", "setup-vscode": "node bin/setup-vscode.js", "prepublishOnly": "npm test", "postinstall": "echo \"🎉 christmas-mcp-copilot-runner installed successfully!\"; echo \"⚠️ IMPORTANT: Don't use VS Code 'Add Server...' UI - it defaults to npx!\"; echo \"🔧 Running automatic setup with node (recommended)...\"; node bin/setup-vscode.js" }, "keywords": [ "mcp", "model-copilot-provider", "model-context-protocol", "command-runner", "system-commands", "copilot", "vscode", "auto-setup", "github-copilot" ], "mcp": { "server": { "command": "node", "args": [ "src/index.js", "--mcp" ], "description": "Christmas MCP Copilot Runner - Safe command execution with auto-approval" }, "defaultCommand": "node", "preferredRuntime": "node", "disableNpx": true }, "author": "Christmas", "license": "MIT", "files": [ "src/", "bin/", "mcp.json", ".mcp", "README.md", "LICENSE", "WINDOWS_INSTALL.md", "UNIX_INSTALL.md", "VSCODE_SETUP_GUIDE.md", "VSCODE_MCP_SETUP.md", "ENHANCED_SETUP_GUIDE.md", "INSTALLATION_WARNING.md", "VSCODE_UI_FIX_GUIDE.md", "WINDOWS_VS_CODE_FIX.md", "VSCODE_NPX_BUG_FIX.md", "CHANGELOG_v1.4.7.md", "setup-windows.bat" ], "engines": { "node": ">=14.0.0" }, "dependencies": { "fs-extra": "^11.1.1" }, "repository": { "type": "git", "url": "git+https://github.com/christmas/christmas-mcp-copilot-runner.git" }, "bugs": { "url": "https://github.com/christmas/christmas-mcp-copilot-runner/issues" }, "homepage": "https://github.com/christmas/christmas-mcp-copilot-runner#readme" }