@darbotlabs/darbot-windows-mcp
Version:
🪟 Darbot Windows MCP - Professional Windows desktop automation server for AI agents via Model Context Protocol (MCP). Control Windows like a human with 15 powerful tools. Includes Python dependencies, UV, and VS Code configuration.
22 lines (18 loc) • 782 B
JavaScript
const chalk = require('chalk');
async function postinstall() {
console.log(chalk.blue.bold('🪟 Darbot Windows MCP'));
console.log(chalk.gray(' Desktop automation for AI agents'));
console.log('');
console.log(chalk.green('✅ Installation complete!'));
console.log('');
console.log(chalk.cyan('Quick start:'));
console.log(' darbot-setup # Run the setup wizard');
console.log(' darbot-windows-mcp # Start the MCP server');
console.log(' darbot-windows-mcp --help # Show help');
console.log('');
console.log(chalk.cyan('For more information: https://github.com/darbotlabs/Darbot-Windows-MCP'));
}
if (require.main === module) {
postinstall();
}
module.exports = { postinstall };