We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JaxonDigital/optimizely-dxp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.js•494 B
/**
* Library Module Exports
* Central export point for all helper modules
* Part of Jaxon Digital Optimizely DXP MCP Server
*/
module.exports = {
// DXP-101: PowerShellHelper removed - using direct REST API calls instead
ResponseBuilder: require('./response-builder'),
ErrorHandler: require('./error-handler'),
Config: require('./config'),
SecurityHelper: require('./security-helper'),
DXPRestClient: require('./dxp-rest-client') // NEW: Direct REST API client
};