UNPKG

mcp-weekly-report

Version:

MCP server for editing Confluence weekly reports with markdown to HTML conversion and synergy collaboration support

22 lines (17 loc) 497 B
#!/usr/bin/env node const { spawn } = require('child_process'); const path = require('path'); // Python 스크립트 경로 const pythonScript = path.join(__dirname, '..', 'src', 'mcp_weekly_report.py'); // Python 프로세스 실행 const python = spawn('python', [pythonScript], { stdio: 'inherit', env: process.env }); python.on('close', (code) => { process.exit(code); }); python.on('error', (err) => { console.error('Failed to start Python process:', err); process.exit(1); });