Developer Docs

MCP Tools & API

Car Geeks Collision exposes a Model Context Protocol (MCP) server that lets ChatGPT, Claude, Cursor, and other AI assistants read our business info and submit repair leads on your behalf.

Endpoint

Point any MCP-compatible client at the URL below. Authentication is not required — all tools except submit_lead are read-only.

MCP Server URL
https://cargeekscollision.com/mcp

Connect from ChatGPT

  1. Open Settings → Connectors → Add connector (Plus/Pro/Business/Enterprise).
  2. Paste the MCP Server URL above.
  3. Name it "Car Geeks Collision" and save. Leave authentication disabled.

Reference

Available tools

Five tools, all documented with an example prompt and the JSON response your assistant will receive.

business_info

Returns Car Geeks Collision's name, phone, email, address, hours, rating, and social links. Read-only, no input.

Example prompt

"What are Car Geeks Collision's hours and phone number?"
Input
{}
Response
{
  "business": {
    "name": "Car Geeks Collision",
    "phone": "(786) 786-1387",
    "email": "info@cargeekscollision.com",
    "address": {
      "street": "2133 Pembroke Rd",
      "city": "Hollywood",
      "region": "FL",
      "postalCode": "33020"
    },
    "hours": [
      { "d": "Mon–Fri",   "h": "8:00 AM – 5:00 PM" },
      { "d": "Saturday",  "h": "By appointment only" },
      { "d": "Sunday",    "h": "By appointment only" }
    ],
    "rating": { "value": 4.9, "count": 288 }
  }
}

list_services

Lists every repair service we offer with slug, title, and short description. Use the slug with get_service for full detail.

Example prompt

"What services does Car Geeks Collision offer?"
Input
{}
Response
{
  "services": [
    { "slug": "collision-repair",           "title": "Collision Repair",              "short": "Factory-quality structural and cosmetic collision repair." },
    { "slug": "auto-body-repair",           "title": "Auto Body Repair",              "short": "Panel replacement, welding, dent removal, and refinishing." },
    { "slug": "ev-repair",                  "title": "Electric Vehicle Repair",       "short": "Rivian, Lucid, Polestar, Mustang Mach-E, and more." },
    { "slug": "luxury-exotic-vehicle-repair","title": "Luxury & Exotic Vehicle Repair","short": "Mercedes-Benz, BMW, Audi, Porsche, Ferrari, Lamborghini, Bentley..." },
    { "slug": "adas-calibration",           "title": "ADAS Calibration",              "short": "Camera, radar, and sensor calibration after collision or windshield work." }
    // …plus flood, frame, dent, A/C, EV battery, premium maintenance, suspension
  ]
}

get_service

Returns full details (long description, bullets, icon) for one service by slug. Slugs come from list_services.

Example prompt

"Tell me about Car Geeks Collision's collision repair service."
Input
{ "slug": "collision-repair" }
Response
{
  "service": {
    "slug": "collision-repair",
    "title": "Collision Repair",
    "short": "Factory-quality structural and cosmetic collision repair.",
    "long":  "Whether the damage is a minor fender bender or a major front-end collision, our certified technicians restore your vehicle to pre-accident condition using manufacturer-recommended procedures.",
    "bullets": [
      "I-CAR Gold Class technicians",
      "Computerized frame measuring",
      "OEM and CAPA-certified parts",
      "Lifetime workmanship warranty"
    ]
  }
}

list_service_areas

Lists the South Florida cities we serve, with a short intro for each.

Example prompt

"Which South Florida cities do you serve?"
Input
{}
Response
{
  "cities": [
    { "slug": "hollywood",          "name": "Hollywood",          "intro": "Our flagship location proudly serves Hollywood drivers…" },
    { "slug": "pembroke-pines",     "name": "Pembroke Pines",     "intro": "Pembroke Pines residents trust Car Geeks Collision…" },
    { "slug": "fort-lauderdale",    "name": "Fort Lauderdale",    "intro": "Fort Lauderdale's destination for Tesla, Porsche, Mercedes-Benz…" },
    { "slug": "aventura",           "name": "Aventura",           "intro": "We serve Aventura's discerning drivers with exotic and luxury expertise…" }
    // …plus Miramar, Davie, Cooper City, Hallandale Beach, Sunny Isles Beach, Weston
  ]
}

submit_lead

Submits a customer lead (estimate, insurance claim, towing, or general contact). Only call after the customer has explicitly asked to be contacted. Requires intent, name, and phone.

Example prompt

"I was rear-ended in my 2022 Model Y — can Car Geeks Collision call me? I'm Jane Doe, (305) 555-0123."
Input
{
  "intent": "estimate",
  "name": "Jane Doe",
  "phone": "(305) 555-0123",
  "email": "jane@example.com",
  "vehicle": "2022 Tesla Model Y",
  "city": "Hollywood",
  "message": "Rear-ended at a light, hatch won't close."
}
Response
{
  "ok": true,
  "message": "Lead submitted. The Car Geeks Collision team will follow up within one business hour."
}
GoogleRead reviews