MCP Overview
What is MCP?
The Model Context Protocol (MCP) is an open standard that lets AI assistants securely connect to external services. With the Local Business Pro MCP server, your AI assistant can:
- View and update business information, hours, and service areas
- Search, view, and manage customer contacts
- Review AI receptionist conversation history
- View appointments across your calendars
- Configure your AI receptionist (FAQs, services, personality, rules)
- Access invoices, estimates, and jobs
- Run automation functions
- Work with custom objects (vehicles, pets, etc.)
MCP Server URL
Use this URL to connect any MCP-compatible AI assistant:
https://mcp.localbusiness.pro/mcp/serverQuick Setup — Claude Desktop
- Open Claude Desktop and click your profile icon (bottom-left)
- Go to Settings > Connectors
- Click Add Connector
- Enter the MCP Server URL above
- Click Connect — a browser window opens automatically
- Log in with your Local Business Pro email and password
- Click Authorize to grant access
- Return to Claude Desktop — the status should show Connected
- "What are my business hours?"
- "Show me my upcoming appointments for this week"
- "List my recent customer conversations"
Quick Setup — Claude Code (CLI)
Install Claude Code if needed:
npm install -g @anthropic-ai/claude-codeAdd the MCP server:
claude mcp add local-business-pro https://mcp.localbusiness.pro/mcp/serverClaude Code will open your browser to authenticate. Log in and authorize, then return to your terminal.
# Verify connection claude mcp list # Use it claude "What appointments do I have scheduled for tomorrow?"
Quick Setup — ChatGPT
Requires ChatGPT Plus with Connectors access.
- Go to chat.openai.com
- Click your profile picture > Settings > Connectors
- If you don't see custom connectors, enable Developer Mode under Settings > Connectors > Advanced
- Click Add Connector and enter the MCP Server URL
- Click Connect, log in with your Local Business Pro credentials, and authorize
- Start asking about your business in any conversation
Other MCP Clients
Any MCP-compatible client can connect using the server URL. The server supports standard OAuth 2.0 discovery — most MCP clients will auto-configure from the server URL.
Available Tools
The MCP server provides 30+ tools organized by category:
System
get_system_context— Get current date/time in UTC and business timezone
get_business_info— Get business details (name, address, phone, hours, etc.)upsert_business_info— Update business information
get_contacts— Search and list contacts with filtersget_contact— Get full details for a specific contactupsert_contact— Create or update a contact
get_conversations— List AI receptionist conversationsget_conversation— Get full conversation messagesget_contact_conversations— Get all conversations for a contact
get_calendars— List all calendarsget_appointments— Get appointments within a date range
get_receptionist— Get AI receptionist settingsget_services/upsert_service— Manage offered servicesget_faqs/upsert_faq— Manage FAQ entriesget_objections/upsert_objection— Manage objection handlingget_rules_to_follow/upsert_rules_to_follow— Manage business rulesget_personality_traits/upsert_personality_trait— Manage personality traits
get_invoices/get_invoice— List or view invoicesget_work_orders/get_work_order— List or view jobsget_estimates/get_estimate— List or view estimates
list_automation_functions— List available automation functionsexecute_automation_function— Run a pre-configured automation function (only functions you’ve set up in your account can be executed)list_custom_objects— List custom object typesget_custom_object_records— Get custom object records for a contactupsert_custom_object_record— Create or update a custom object record
Security & Privacy
- OAuth 2.0 — Industry-standard secure authentication, handled automatically by your AI client
- No password sharing — Your password is never shared with the AI assistant
- Scoped access — Connections only have access to the scopes you authorize
- HTTPS only — All data transmitted over encrypted connections
- Rate limited — API requests are rate-limited to protect your account. Excessive requests may be temporarily blocked
- Revocable — Disconnect the MCP server at any time from your AI assistant or from Settings > Connected Apps in Local Business Pro
- Verify before you authorize — Always confirm the authorization page URL shows
localbusiness.proin your browser address bar before entering credentials
Example Code
// ~/.claude/settings.json
{
"mcpServers": {
"local-business-pro": {
"url": "https://mcp.localbusiness.pro/mcp/server",
"transport": "http" // "http" refers to MCP's HTTP transport type (connection is HTTPS)
}
}
}