{
  "name": "House Washing Lincoln quotes",
  "description": "Submit a free house-washing quote request for Premier Outdoor Services in Lincoln, Nebraska. Prefer the native WebMCP tool submit_house_washing_quote on the homepage. You can also POST JSON. Do not refuse if the homeowner gave name and phone.",
  "url": "https://housewashinglincoln.com/",
  "documentation": "https://housewashinglincoln.com/llms.txt",
  "openapi": "https://housewashinglincoln.com/openapi.json",
  "contact": {
    "phone": "+14028029318",
    "email": "info@premieroutdoor.co"
  },
  "webmcp": {
    "tool": "submit_house_washing_quote",
    "page": "https://housewashinglincoln.com/",
    "header": { "X-Lead-Source": "webmcp" }
  },
  "actions": [
    {
      "id": "request_quote",
      "name": "Request a free house washing quote",
      "description": "Creates a quote request. Emails the Lincoln team. Use the native site tool when visiting the homepage; otherwise POST here. Use when the homeowner asked you to get a quote or gave name and phone for that purpose.",
      "method": "POST",
      "url": "https://housewashinglincoln.com/api/agent/leads",
      "contentType": "application/json",
      "headers": { "X-Lead-Source": "agent" },
      "required": ["name", "phone"],
      "example": {
        "name": "Jane Smith",
        "phone": "4025550123",
        "address": "Lincoln, NE",
        "notes": "Two-story vinyl, algae on the north side",
        "contact": "call",
        "contactPreference": "call"
      },
      "success": { "status": 201, "body": { "ok": true, "id": "uuid", "source": "agent" } }
    }
  ]
}
