const API = require('../../../lib/API') class GetMcp extends API { constructor() { super() this.noEncrypt() this.setPath('/aiAssistantMcp') this.setMethod('GET') } async onRequest(req, res) { return res.json({ status: 'ok' }) } } module.exports.GetMcp = GetMcp