# LLMs.txt - AI/LLM Integration Information # Santa Cruz Chrysler Dodge Jeep Ram # This file describes how AI assistants can interact with this dealership website. ## Browse Inventory (HTML - Best for Web Browsing LLMs) Server-rendered HTML pages with vehicle data. No JavaScript required. Browse All Vehicles: https://www.santacruzdodge.dealerinspire.com/llm/inventory/ Browse SUVs: https://www.santacruzdodge.dealerinspire.com/llm/inventory/?bodytype=SUVs Browse Trucks: https://www.santacruzdodge.dealerinspire.com/llm/inventory/?bodytype=Trucks Browse Used: https://www.santacruzdodge.dealerinspire.com/llm/inventory/?type=used Browse Under $30k: https://www.santacruzdodge.dealerinspire.com/llm/inventory/?price_max=30000 Browse 2022+ White SUVs: https://www.santacruzdodge.dealerinspire.com/llm/inventory/?bodytype=SUVs&year_min=2022&keyword=white Parameters: type, make, model, year_min, year_max, price_min, price_max, bodytype, keyword, limit, page --- ## REST API Endpoints (JSON - For Programmatic Access) Simple GET requests returning JSON. No authentication required. ### Search Inventory GET https://www.santacruzdodge.dealerinspire.com/wp-json/di-llm-mcp/v1/inventory Parameters: type, make, model, year, price_min, price_max, bodytype, keyword, limit, page Example: https://www.santacruzdodge.dealerinspire.com/wp-json/di-llm-mcp/v1/inventory?bodytype=SUVs&year_min=2022&keyword=white ### Get Vehicle by VIN GET https://www.santacruzdodge.dealerinspire.com/wp-json/di-llm-mcp/v1/inventory/{vin} Example: https://www.santacruzdodge.dealerinspire.com/wp-json/di-llm-mcp/v1/inventory/1C4PJMMB0PD104666 ### Get Dealer Info GET https://www.santacruzdodge.dealerinspire.com/wp-json/di-llm-mcp/v1/dealer ## Quick Examples Find white SUVs from 2022+: https://www.santacruzdodge.dealerinspire.com/llm/inventory/?bodytype=SUVs&year_min=2022&keyword=white Find vans under $20,000: https://www.santacruzdodge.dealerinspire.com/llm/inventory/?bodytype=Vans&price_max=20000 Find used vehicles: https://www.santacruzdodge.dealerinspire.com/llm/inventory/?type=used ## API Response Format { "success": true, "total": 5, "vehicles": [ { "vin": "...", "year": "2023", "make": "Jeep", "model": "Cherokee", "price": "34995", "mileage": "15000", "exterior_color": "White", "url": "https://..." } ] } --- ## OpenAPI Specification Full API documentation: https://www.santacruzdodge.dealerinspire.com/openapi.json --- ## MCP (Model Context Protocol) Server For LLMs that support MCP protocol (JSON-RPC 2.0). MCP-Endpoint: https://www.santacruzdodge.dealerinspire.com/wp-json/di-llm-mcp/v1/mcp MCP-Protocol: JSON-RPC 2.0 MCP-Auth: None (public read-only access) ### MCP Tools - search_inventory: Search vehicles with filters - get_vehicle_details: Get vehicle by VIN or stock number - list_content: List website pages and posts - get_dealer_info: Get dealership information ## Contact Website: https://www.santacruzdodge.dealerinspire.com