Merge pull request #638 from getmaxun/mcp

feat: MCP server support
This commit is contained in:
Karishma Shukla
2025-06-24 16:25:31 +05:30
committed by GitHub
4 changed files with 407 additions and 11 deletions

View File

@@ -84,9 +84,6 @@ export const io = new Server(server);
*/
export const browserPool = new BrowserPool();
// app.use(bodyParser.json({ limit: '10mb' }))
// app.use(bodyParser.urlencoded({ extended: true, limit: '10mb', parameterLimit: 9000 }));
// parse cookies - "cookie" is true in csrfProtection
app.use(cookieParser())
app.use('/webhook', webhook);
@@ -100,9 +97,9 @@ app.use('/api-docs', swaggerUi.serve, swaggerUi.setup(swaggerSpec));
readdirSync(path.join(__dirname, 'api')).forEach((r) => {
const route = require(path.join(__dirname, 'api', r));
const router = route.default || route; // Use .default if available, fallback to route
const router = route.default || route;
if (typeof router === 'function') {
app.use('/api', router); // Use the default export or named router
app.use('/api', router);
} else {
console.error(`Error: ${r} does not export a valid router`);
}
@@ -152,7 +149,6 @@ app.get('/', function (req, res) {
return res.send('Maxun server started 🚀');
});
// Add CORS headers
app.use((req, res, next) => {
res.header('Access-Control-Allow-Origin', process.env.PUBLIC_URL || 'http://localhost:5173');
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS');
@@ -172,10 +168,10 @@ server.listen(SERVER_PORT, '0.0.0.0', async () => {
try {
await connectDB();
await syncDB();
logger.log('info', `Server listening on port ${SERVER_PORT}`);
logger.log('info', `Server listening on port ${SERVER_PORT}`);
} catch (error: any) {
logger.log('error', `Failed to connect to the database: ${error.message}`);
process.exit(1); // Exit the process if DB connection fails
process.exit(1);
}
});
@@ -209,4 +205,4 @@ process.on('SIGINT', async () => {
if (recordingWorkerProcess) recordingWorkerProcess.kill();
}
process.exit();
});
});