📍 Market Intelligence
AI-powered market gap analysis and location scouting for your business expansion — powered by your n8n Market Intelligence workflow.
Tell me your product/service and I'll analyse your area.
🤝 Supplier Finder
Find verified suppliers for your niche, retrieve their contact details, and save them to Google Contacts — powered by your n8n Supplier workflow.
What are you sourcing, and where are you based?
✍️ Content Creator
Research topics live and generate full SEO-optimised blog posts in HTML — powered by your n8n Content Creator workflow with Tavily web search.
Give me a topic and your target audience.
✈️ Telegram Business Assistant
Your 24/7 AI bot on Telegram — answers customer queries, retrieves and saves contacts to Google Contacts, composes and sends emails via Gmail, and creates Google Calendar events automatically.
bot (e.g. JanesShopBot).BotFather immediately gives you a Bot Token — a long string that looks like
1234567890:AAFxxx.... Copy it and paste it below.
Set the trigger to fire on Message events. n8n handles the webhook registration automatically — no manual webhook URL setup needed.
System prompt: paste the output from your Customer Service → Social Channels → Copy System Prompt button.
t.me/YourBotUsername. Share it on your website, Instagram bio, business card, or WhatsApp status. Any customer who messages the bot gets an instant AI reply — 24/7, no extra cost.
🎧 Customer Service AI
Your always-on AI agent — answers customer questions across Instagram, Facebook, TikTok DMs and phone calls using your business information.
Fill in your business details below. The AI agent uses this as its knowledge base when answering any customer question — on any channel, at any time. The more detail you provide, the better it answers.
Connect your social media accounts so the AI agent can automatically reply to customer DMs on Instagram, Facebook, and TikTok. Each channel connects through your n8n workflow.
Connect your WhatsApp Business number so the Customer Service AI answers customer enquiries — using your saved prices, hours, services, and FAQs as its knowledge base.
Go to developers.facebook.com → Create App → Add WhatsApp product → Connect your WhatsApp Business number.
From WhatsApp → API Setup, copy your Access Token and Phone Number ID. Set a Webhook pointing to your n8n URL, subscribing to the messages field.
Add a WhatsApp Trigger node → AI Agent node (paste your system prompt from Business Info) → WhatsApp Send Message node. The bot replies to every customer message automatically.
Once you have saved your Business Info, click below to copy the complete system prompt. Paste it into the System Message field of your n8n AI Agent nodes for all five channels — Instagram, Facebook, TikTok, Email, and WhatsApp.
Your AI phone agent answers customer calls 24/7 using your business information. The recommended setup uses Bland.ai — the simplest AI phone call platform, built for exactly this use case.
Pricing: pay per minute (~$0.09/min). For a small business receiving 20–30 calls/day, that's roughly $5–10/month.
• Prompt: Paste the system prompt from your Business Info tab (click "Copy System Prompt for n8n" in the Social Channels tab)
• Voice: Choose a voice that matches your brand (African English accents available)
• First sentence:
Hello! Thank you for calling [Business Name]. How can I help you today?• Transfer number: Your personal number — the agent transfers complex calls to you automatically
Assign the number to your agent. Now whenever a customer calls that number, your AI agent answers immediately — day or night.
Webhook URL format:
https://your-n8n.com/webhook/bland-calls
To activate me:
1. Fill in your Business Info tab with your services, prices, and hours
2. Save the info — I'll use it to answer every customer question
3. Come back here to test me before going live
Once configured, I'll handle questions on Instagram, Facebook, TikTok, email, and phone calls automatically.
See exactly what your customers experience. Type as if you are a real customer messaging your business for the first time — the agent will respond just as it would on Instagram, Facebook, or any other channel.
This simulation uses your saved Business Info as the AI's knowledge. Responses are identical to what real customers will receive.
Recommended fix: Route all AI calls through a Cloudflare Worker proxy. The key stays server-side and is never exposed to the browser.
How to set up a proxy (free on Cloudflare Workers):
- Go to dash.cloudflare.com → Workers & Pages → Create Worker
- Name it
buildup-proxyand paste the worker code (see below) - Go to Worker Settings → Variables → add
ANTHROPIC_KEYas a secret - Replace the fetch URL in this app from
api.anthropic.comto your Worker URL
View Worker code →
export default {
async fetch(request, env) {
if(request.method === 'OPTIONS') return new Response(null, {
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Headers': '*',
'Access-Control-Allow-Methods': 'POST'
}
});
const body = await request.json();
const resp = await fetch('https://api.anthropic.com/v1/messages', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': env.ANTHROPIC_KEY,
'anthropic-version': '2023-06-01'
},
body: JSON.stringify(body)
});
const data = await resp.json();
return new Response(JSON.stringify(data), {
headers: {
'Content-Type': 'application/json',
'Access-Control-Allow-Origin': '*'
}
});
}
};
Connect a free Supabase database to sync your account, business info, and credentials across all your devices and browsers. Takes 5 minutes to set up. supabase.com →