FREE, NO SIGNUP

The AI voice receptionist
we run, given away.

It answers, works out what the caller wants, checks a real diary, offers slots and books the appointment. This is the workflow we run in production, exported and stripped of our credentials. Not a cut down demo version.

Two n8n JSON files. Import, add your own credentials, edit two nodes. Full setup notes are in the README, and every node is readable before you import it.

What it is not

  • Not a phone system. This is the brain. Putting it on a real phone number needs Twilio or similar in front of it.
  • Not free to run. n8n self hosted is free, but Anthropic and Deepgram are usage priced. A short call costs cents.
  • Not for every industry. It is built around appointment booking. Clinics, salons, dentists, garages, tutors fit. A pizza order does not.
  • Not multi tenant. One business per workflow.
WHAT IT DOES

A caller says “anything Thursday for a facial?”

Four things have to work for that sentence to end in a booking. This is where most voice agents fall over.

Understands what was said

Matches "anti wrinkle", "forehead", "frown lines" to one service. You write the aliases customers actually say, not your price list wording.

Checks a real diary

Reads existing appointments and finds genuinely free slots, respecting opening hours, closed days and how long each service takes.

Offers slots people can answer

Up to three, one per day, so "Thursday" is unambiguous. It understands dates and weekdays, not just "1", "2", "3". Nobody answers a phone with an index.

Books it, and remembers

Writes the appointment, keeps conversation state between turns, and flags a human when the question is outside what it should answer.

n8nSelf hosted or cloud
ClaudeAnswers and phrases for speech
Deepgram AuraNeural voice, optional
Google SheetsDiary and lead store
THE PART THAT MATTERS

Audio never enters n8n

Which is the only reason this is fast enough to use.

Speech to text happens in the browser. Text to speech happens in a second, separate workflow. Only text crosses the wire into the main one. Routing audio through a workflow engine costs two to three seconds a turn before anything has thought about anything, and a voice agent reads as a dead line past about 1.2 seconds.

We measured the rest of it too. Of a 4.5 second reply, four Google Sheets reads were 3.29 seconds and the AI was 24 milliseconds. The caller was waiting on a spreadsheet, not on intelligence. The full breakdown, including why the newer Deepgram model was twice as slow as the older one, is in the write up.