Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.ezforge.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

The “What AI Agents See” panel appears on your Ready Business profile page, between the completeness checklist and the profile form. It shows the exact JSON response each MCP tool would return to an AI agent querying your deployed server — formatted and updated in real time as you edit your profile fields. No save is required. The preview reflects your in-progress edits instantly so you can verify what agents will see before you commit any changes.

How it works

When you open the Business page, the panel loads a snapshot of your current business data and displays it as the JSON an AI agent would receive. As you type in the profile form — business name, description, phone, address, website — the preview updates immediately by reading the form fields directly. The panel is collapsible. Click the chevron in the top-right corner to hide or show the preview.

Tool tabs

The panel has three tabs, one for each base MCP tool available on every Ready server:
TabReturnsWhat it shows
get_business_infoReturns business name, description, and categoryUpdates live when you edit Business name, Description, or Industry
get_hoursReturns weekly hours keyed by day name (monday, tuesday, …) or "closed"Reflects saved hours — edit hours in the Hours section and save to update
get_contact_infoReturns phone, email, address, and optional websiteUpdates live when you edit Phone, Address, City, State, Zip, Country, or Website
The Website field is optional. When the field is blank the website key is omitted from the get_contact_info response entirely. Fill in the field and it appears; clear it and it disappears.

Example: get_business_info response

{
  "name": "Acme Plumbing Co.",
  "description": "Licensed plumbers serving metro Detroit since 1987.",
  "category": "Home Services"
}

Example: get_hours response

{
  "monday":    { "open": "08:00", "close": "17:00" },
  "tuesday":   { "open": "08:00", "close": "17:00" },
  "wednesday": { "open": "08:00", "close": "17:00" },
  "thursday":  { "open": "08:00", "close": "17:00" },
  "friday":    { "open": "08:00", "close": "17:00" },
  "saturday":  "closed",
  "sunday":    "closed"
}

Example: get_contact_info response

{
  "phone": "+1-313-555-0199",
  "email": "",
  "website": "https://acmeplumbing.example",
  "address": {
    "line1": "123 Main St",
    "city": "Detroit",
    "state": "MI",
    "zip": "48201",
    "country": "US"
  }
}
The email field is always returned as an empty string — no email capture is included in the Ready profile form.

Available-tools list

Below the JSON preview the panel shows every MCP tool exposed by your server as a chip list. The three base tools (get_business_info, get_hours, get_contact_info) are highlighted; vertical-specific tools appear in a muted style alongside them. The tools shown depend on which vertical your server was deployed with:
VerticalAvailable tools
Restaurantget_business_info, get_hours, get_contact_info, search_menu, get_menu_item, check_dietary, request_reservation, check_availability, place_order
Salon & Spaget_business_info, get_hours, get_contact_info, search_services, get_service_details, check_availability, book_appointment, get_cancellation_policy
Home Servicesget_business_info, get_hours, get_contact_info, check_service_area, get_services, request_quote, check_availability, verify_credentials
Retailget_business_info, get_hours, get_contact_info, search_products, check_inventory, get_product_details, place_order
Professional Servicesget_business_info, get_hours, get_contact_info, list_services, get_service_details, check_availability, book_consultation, get_credentials
Other / Customget_business_info, get_hours, get_contact_info
Some vertical tools are gated behind runtime feature flags (menu browsing, appointment booking, online ordering). The preview lists all tools for your vertical unconditionally — the live MCP server may expose a subset if those flags are disabled on your account.
  • Business Profile — Manage the profile fields the preview reads from
  • Templates — Learn what each vertical template offers