dental-calendar-mcp
Enables ElevenLabs AI agents to manage dental clinic appointments through Google Calendar, including checking availability, booking, canceling, rescheduling, and retrieving appointment details.
README
Dental Calendar MCP Server
A Model Context Protocol (MCP) server for managing dental clinic appointments through Google Calendar, specifically designed for integration with ElevenLabs Conversational AI agents.
Overview
This MCP server provides ElevenLabs AI agents with the ability to:
- Check available appointment slots
- Book new appointments
- Cancel existing appointments
- Reschedule appointments
- Retrieve appointment details
- List appointments in date ranges
- Find appointments by patient phone number
Features
- Google Calendar Integration: Full integration with Google Calendar API v3
- Business Hours Validation: Respects clinic hours and working days
- Appointment Type Management: Different appointment types with appropriate durations
- Conflict Detection: Prevents double-booking and scheduling conflicts
- Natural Language Support: Handles various date/time formats from voice input
- Comprehensive Error Handling: Provides helpful error messages for ElevenLabs agents
- Patient Information Management: Stores patient details in calendar events
- Automatic Reminders: Configures email reminders for appointments
Quick Start
1. Prerequisites
- Node.js 18+ installed
- Google Cloud Console project with Calendar API enabled
- Google OAuth2 credentials
2. Installation
cd google-calendar-mcp
npm install
3. Configuration
- Copy
.env.exampleto.env:
cp .env.example .env
- Configure your environment variables in
.env:
GOOGLE_CLIENT_ID=your_google_client_id_here
GOOGLE_CLIENT_SECRET=your_google_client_secret_here
GOOGLE_REDIRECT_URI=http://localhost:3000/auth/google/callback
GOOGLE_CALENDAR_ID=primary
- Set up Google OAuth (see Google OAuth Setup Guide)
4. Build and Run
npm run build
npm start
MCP Tools
check_available_slots
Check available appointment time slots for a specific date.
Parameters:
date(string): Date to check (YYYY-MM-DD or natural language)duration(number, optional): Appointment duration in minutes (default: 30)timeRange(object, optional): Limit search to specific hours
Example:
{
"date": "2024-03-15",
"duration": 30,
"timeRange": {
"start": "09:00",
"end": "17:00"
}
}
book_appointment
Book a new dental appointment.
Parameters:
patient_name(string): Patient's full namephone(string): Patient's phone numberemail(string): Patient's email addressdatetime(string): Appointment date/timeduration(number, optional): Duration in minutes (default: 30)appointment_type(string, optional): Type of appointment (default: "checkup")notes(string, optional): Additional notes
Example:
{
"patient_name": "John Smith",
"phone": "555-123-4567",
"email": "john@example.com",
"datetime": "2024-03-15T10:00:00",
"duration": 45,
"appointment_type": "cleaning",
"notes": "First time patient"
}
cancel_appointment
Cancel an existing appointment.
Parameters:
appointment_id(string): Unique appointment ID
reschedule_appointment
Move an appointment to a new date/time.
Parameters:
appointment_id(string): Unique appointment IDnew_datetime(string): New appointment date/time
get_appointment_details
Retrieve detailed information about a specific appointment.
Parameters:
appointment_id(string): Unique appointment ID
find_appointment_by_phone
Find upcoming appointments for a patient by phone number.
Parameters:
phone(string): Patient's phone number
list_appointments
List all appointments within a date range.
Parameters:
date_range(object): Start and end datesstart(string): Start dateend(string): End date
Integration with ElevenLabs
This MCP server is designed to work seamlessly with ElevenLabs Conversational AI agents. The tools provide structured responses that ElevenLabs agents can easily interpret and respond to naturally.
Example ElevenLabs Integration
- Configure Claude Desktop to include this MCP server
- Train your ElevenLabs agent with appointment booking flows
- Use the MCP tools within your conversational flows
See ElevenLabs Integration Guide for detailed setup instructions.
Configuration
Dental Clinic Settings
Customize clinic-specific settings in config/dental-settings.json:
- Business Hours: Define working hours for each day
- Appointment Types: Configure types, durations, and buffer times
- Holidays: List clinic closure dates
- Policies: Set booking rules and restrictions
Environment Variables
| Variable | Description | Required |
|---|---|---|
GOOGLE_CLIENT_ID |
Google OAuth2 Client ID | Yes |
GOOGLE_CLIENT_SECRET |
Google OAuth2 Client Secret | Yes |
GOOGLE_REDIRECT_URI |
OAuth2 Redirect URI | Yes |
GOOGLE_CALENDAR_ID |
Calendar ID to use (default: "primary") | No |
CLINIC_NAME |
Name of the dental clinic | No |
CLINIC_TIMEZONE |
Clinic timezone (default: "America/New_York") | No |
BUSINESS_HOURS_START |
Default start time (default: "09:00") | No |
BUSINESS_HOURS_END |
Default end time (default: "17:00") | No |
Development
Building
npm run build
Development Mode
npm run dev
Testing
npm test
Claude Desktop Configuration
Add this MCP server to your Claude Desktop configuration:
{
"mcpServers": {
"dental-calendar": {
"command": "node",
"args": ["/path/to/dental-ai-system/google-calendar-mcp/dist/index.js"],
"env": {
"GOOGLE_CLIENT_ID": "your_client_id",
"GOOGLE_CLIENT_SECRET": "your_client_secret",
"GOOGLE_REDIRECT_URI": "your_redirect_uri"
}
}
}
}
Error Handling
The server provides comprehensive error handling with helpful messages:
- Validation Errors: Clear messages about invalid input
- Scheduling Conflicts: Suggestions for alternative times
- API Errors: Graceful handling of Google Calendar API issues
- Business Logic Errors: Helpful guidance for booking policies
Security
- OAuth2 authentication for Google Calendar access
- Patient information stored securely in calendar events
- Input validation and sanitization
- No storage of sensitive credentials in code
Support
For issues and questions:
- Check the Google OAuth Setup Guide
- Review the ElevenLabs Integration Guide
- Verify your configuration matches the examples
License
MIT License - see LICENSE file for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.