gaia-vault-mcp
Version:
Azure Blob Storage MCP server for AI assistants
12 lines (11 loc) • 419 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getAzureConfig = void 0;
const getAzureConfig = () => {
const connectionString = process.env.AZURE_STORAGE_CONNECTION_STRING;
if (!connectionString) {
throw new Error("AZURE_STORAGE_CONNECTION_STRING environment variable is not set");
}
return { connectionString };
};
exports.getAzureConfig = getAzureConfig;