(function () {
if (typeof navigator === 'undefined' || !navigator.modelContext) return;
const controller = new AbortController();
const signal = controller.signal;
navigator.modelContext.registerTool('list_modules', {
description: 'List all 60+ custom Beaver Builder modules provided by Ultimate Addons for Beaver Builder.',
inputSchema: {
type: 'object',
properties: {
category: {
type: 'string',
description: 'Optional category filter (e.g. content, creative, form)'
}
}
},
execute: async (params) => {
return {
url: 'https://www.ultimatebeaver.com/modules/',
description: 'Browse all UABB modules with live demos',
total: '60+'
};
}
}, { signal });
navigator.modelContext.registerTool('list_templates', {
description: 'Browse 300+ professionally designed row and page templates, and 40+ full website demos for Beaver Builder.',
inputSchema: {
type: 'object',
properties: {
type: {
type: 'string',
enum: ['row', 'page', 'website'],
description: 'Type of template to browse'
}
}
},
execute: async (params) => {
const urls = {
row: 'https://www.ultimatebeaver.com/templates/',
page: 'https://www.ultimatebeaver.com/templates/',
website: 'https://www.ultimatebeaver.com/free-premium-beaver-builder-templates/'
};
return {
url: urls[params?.type] || 'https://www.ultimatebeaver.com/templates/',
description: 'Browse UABB templates'
};
}
}, { signal });
navigator.modelContext.registerTool('get_pricing', {
description: 'Get current UABB pricing plans, features, and purchase links.',
inputSchema: {
type: 'object',
properties: {}
},
execute: async () => {
return {
url: 'https://www.ultimatebeaver.com/pricing/',
plans: [
{ sites: 3, annual: '$69/yr', lifetime: '$319' },
{ sites: 10, annual: '$79/yr', lifetime: '$349' },
{ sites: 1000, annual: '$89/yr', lifetime: '$399' }
],
purchase: 'https://store.brainstormforce.com'
};
}
}, { signal });
})();
Version 1.31.3 - Ultimate Addons for Beaver Builder
Skip to content
Improvements
- Keep the settings lightbox open after applying Preset to improve UX.
- Info List – Added aria-label attribute to link.
- Interactive Banner 2 – Added aria-label attribute to link.
Fixed
- Woo-Mini Cart – Cart Content is not clickable when Cart Style is Modal and Off-Canvas.
Scroll to Top