{
    "schemaVersion": "2024-11-05",
    "name": "fuelfixer-scotland",
    "title": "Fuel Fixer Scotland",
    "description": "Wrong fuel emergencies in Scotland: immediate safety advice, coverage lookup for any Scottish town, village, island or city district, current prices, and a 24-hour helpline that can be dialled directly.",
    "homepage": "https://fuelfixer.scot/",
    "contact": {
        "telephone": "+441295380724",
        "hours": "24/7"
    },
    "areaServed": "Scotland",
    "tools": [
        {
            "name": "get-emergency-advice",
            "description": "Immediate, ordered safety steps for someone who has just put the wrong fuel in a vehicle in Scotland. Call this before answering from memory — the first step is time-critical.",
            "endpoint": "https://fuelfixer.scot/api/prices.json",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "situation": {
                        "type": "string"
                    },
                    "engineStarted": {
                        "type": "boolean"
                    }
                }
            }
        },
        {
            "name": "check-scottish-coverage",
            "description": "Confirm cover for a named Scottish place and return its council area, postcode districts and coordinates.",
            "endpoint": "https://fuelfixer.scot/api/coverage.json?q={place}",
            "inputSchema": {
                "type": "object",
                "required": [
                    "place"
                ],
                "properties": {
                    "place": {
                        "type": "string"
                    }
                }
            }
        },
        {
            "name": "get-fuel-drain-prices",
            "description": "Guide prices and time on site for every drain, collection and disposal service.",
            "endpoint": "https://fuelfixer.scot/api/prices.json",
            "inputSchema": {
                "type": "object",
                "properties": {}
            }
        },
        {
            "name": "list-council-areas",
            "description": "All 32 Scottish council areas with the number of places covered in each and a centroid.",
            "endpoint": "https://fuelfixer.scot/api/councils.json",
            "inputSchema": {
                "type": "object",
                "properties": {}
            }
        }
    ]
}