AutoMotion
Use AutoMotion to diagnose, identify, and book needed service for your car, truck, or suv at over 25k automotive locations. AutoMotion displays the nearest oil change, tire, brake, and auto glass shops in your area and can help you schedule an appointment when needed.
- Homepage
- https://automotionapp.com
- Remote URL
https://automotion-mcp-production-6f08e98a6e4b.herokuapp.com/mcp- Auth
- NONE
Tools (3)
Extracted live via the executor SDK.
-
list_brandsUse this when: User asks "what brands do you have?", "what car companies are available?", or wants to see all options before searching for locations.
What this does: Returns complete list of car manufacturers AND service providers in the network.
IMPORTANT: "Brands" is overloaded - includes TWO categories:
- Car Manufacturers: Honda, Toyota, BMW, Ford, etc. (brand-specific locations)
- Service Providers: Glass Repair, Rent a Car, Auto Insurance, etc. (work with ANY vehicle)
When to use:
- "What car brands do you support?"
- "Do you have Honda locations?"
- "What services are available?"
- "Can I find glass repair shops?"
When NOT to use:
- User just wants nearby locations without caring about brand → Skip this, go straight to find_locations
- General car questions like "What's the best car to buy?" or "Tell me about Honda reliability" → Use web search instead
- Questions about car prices or features → Use web search instead
Returns: Categorized list of car manufacturers and service providers with IDs and logos. Use this info to answer questions about brand availability.
-
find_locations✅ PRIMARY TOOL for all location searches. Handles brand + location combinations automatically.
What this returns: Service locations matching your criteria, sorted by distance when location provided.
PARAMETERS:
- brand_name (optional): Human-readable brand like "Honda", "Glass Repair", "Tire and Wheel"
- latitude/longitude (optional): Search center coordinates
- Both optional, but provide at least one
SEARCH MODES (automatically determined):
- Brand + Location → Up to 20 nearest locations for that brand (most common)
- Location only → Up to 20 nearest locations of all brands
- Brand only → ALL locations for that brand nationwide (rarely needed)
LOCATION HANDLING:
- If user specifies a location (city, address, "near X"), geocode it to lat/lng
- If user says "near me" or doesn't specify location, USE THE USER'S KNOWN COORDINATES
- Always default to user's current/known location when available
EXAMPLES:
- "Find Honda locations near me" → brand_name="Honda" + user's coordinates
- "Tire shop in Brooklyn" → brand_name="Tire and Wheel" + Brooklyn coordinates
- "Glass repair Charlottesville" → brand_name="Glass Repair" + Charlottesville coordinates
- "Locations near me" → just coordinates (no brand)
- "All Toyota locations" → brand_name="Toyota" only (nationwide)
SPECIALTY SERVICES (use brand_name):
- Tires/wheels → brand_name="Tire and Wheel"
- Auto glass → brand_name="Glass Repair"
- Car rental → brand_name="Rent a Car"
UNIVERSAL SERVICES (no brand needed, just location):
- Oil change, brake service, car maintenance → use location only
Each result includes:
- business_category: Type of business
- services: Array of services offered
- booking.schedule_service_url: Link to schedule service
Returns: Service locations as a formatted list with names, addresses, and booking links.
-
get_booking_detailsUse this when: User wants to book an appointment or get contact details for a specific location from search results.
⚠️ CRITICAL LIMITATIONS: This tool returns ONLY contact information and booking URL. It does NOT provide:
- Appointment availability or scheduling details
- Service center hours or wait times
- Pricing, service quality, or reviews
- Operational details about this specific location
- Any information beyond basic contact details
DO NOT make recommendations about:
- Best time to book appointments
- Service quality or reliability
- Location practices or upselling patterns
- Wait times or service speed
What this ACTUALLY returns:
- Booking URL (for user to schedule directly)
- Email and address
- List of brands/products the location carries
When to use:
- ✅ User needs booking URL or contact info for a specific location
- ✅ User asks "How do I contact this location?"
When NOT to use:
- ❌ User asks about hours, availability, pricing, wait times → Tell them to use booking URL or contact via email
- ❌ Searching for locations → Use find_locations instead
After calling this tool: Provide ONLY the contact info returned. Direct user to booking URL for any scheduling/service questions.