{
    "schema_version": "1.0",
    "name": "RemorquagePro MCP Server",
    "description": "MCP server exposing the RemorquagePro directory of Remorquage professionals in France.",
    "version": "1.0.0",
    "url": "https://remorquage-pro.fr/wp-json/local-pro/v1/mcp",
    "transport": [
        "http"
    ],
    "capabilities": {
        "tools": true,
        "resources": true,
        "prompts": false
    },
    "tools": [
        {
            "name": "search_companies",
            "description": "Search for towing/roadside assistance professionals by city, department or region in France",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "city_id": {
                        "type": "integer",
                        "description": "City ID"
                    },
                    "department_id": {
                        "type": "integer",
                        "description": "Department ID"
                    },
                    "region_id": {
                        "type": "integer",
                        "description": "Region ID"
                    },
                    "per_page": {
                        "type": "integer",
                        "description": "Results per page (max 50)",
                        "default": 20
                    }
                }
            }
        },
        {
            "name": "get_company",
            "description": "Get detailed information about a specific company by ID or slug",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "integer"
                    },
                    "slug": {
                        "type": "string"
                    }
                }
            }
        },
        {
            "name": "list_regions",
            "description": "List all French regions covered in the directory with company counts",
            "inputSchema": {
                "type": "object",
                "properties": []
            }
        },
        {
            "name": "list_departments",
            "description": "List departments, optionally filtered by region",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "region_id": {
                        "type": "integer",
                        "description": "Filter by region ID"
                    }
                }
            }
        },
        {
            "name": "list_cities",
            "description": "List cities with professionals, filtered by department",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "department_id": {
                        "type": "integer",
                        "description": "Department ID (required)"
                    }
                },
                "required": [
                    "department_id"
                ]
            }
        }
    ],
    "resources": [
        {
            "uri": "https://remorquage-pro.fr/wp-json/local-pro/v1/regions",
            "name": "Regions",
            "description": "All French regions with company counts",
            "mimeType": "application/json"
        },
        {
            "uri": "https://remorquage-pro.fr/lp-sitemap.xml",
            "name": "Sitemap",
            "description": "Full XML sitemap of all directory pages",
            "mimeType": "application/xml"
        },
        {
            "uri": "https://remorquage-pro.fr/llms.txt",
            "name": "LLMs.txt",
            "description": "Human-readable site description for LLMs",
            "mimeType": "text/plain"
        }
    ],
    "contact": {
        "email": "mohammedzkiek@gmail.com",
        "url": "https://remorquage-pro.fr/"
    },
    "geographic_coverage": "France",
    "language": "fr",
    "license": "proprietary"
}