We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bermingham85/mcp-puppet-pipeline'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env node
// FULLY AUTOMATED VIDEO TO PUPPET PRODUCTION SYSTEM
// This runs everything automatically without manual intervention
const { spawn, exec } = require('child_process');
const path = require('path');
const fs = require('fs');
console.log(`
╔══════════════════════════════════════════════════════════════╗
║ ║
║ 🚀 AUTOMATED PUPPET PRODUCTION SYSTEM v2.0 🚀 ║
║ ║
║ Video → Frame Extraction → Puppet Generation ║
║ → Scene Creation → Voice Synthesis → Package ║
║ ║
╚══════════════════════════════════════════════════════════════╝
`);
// Start the automation
console.log('⚡ Initiating full automation sequence...\n');
const automation = spawn('node', [path.join(__dirname, 'AUTOMATED_DEPLOY.js')], {
stdio: 'inherit',
cwd: __dirname
});
automation.on('close', (code) => {
if (code === 0) {
console.log('\n✨ Automation completed successfully!');
} else {
console.log('\n⚠️ Automation completed with warnings. Check logs.');
}
});
automation.on('error', (err) => {
console.error('Failed to start automation:', err);
// Fallback to direct execution
console.log('Attempting direct execution...');
require('./AUTOMATED_DEPLOY.js');
});