{
  "$schema": "https://modelcontextprotocol.io/schemas/server-card.json",
  "serverInfo": {
    "name": "sprinteo-mcp",
    "version": "1.0.0",
    "vendor": "Sprinteo",
    "description": "Sprinteo MCP discovery card. Sprinteo is a French national lead generation platform for automotive covering, PPF (Paint Protection Film), dechroming, window tinting and detailing services. Use this server to find certified installers across 86 French departments.",
    "homepage": "https://sprinteo.fr",
    "documentation": "https://sprinteo.fr/llms.txt"
  },
  "transport": {
    "type": "http",
    "endpoint": "https://sprinteo.fr/api/mcp",
    "authentication": "none"
  },
  "capabilities": {
    "tools": { "listChanged": false },
    "resources": { "subscribe": false, "listChanged": false },
    "prompts": { "listChanged": false }
  },
  "tools": [
    {
      "name": "find_poseur_by_city",
      "description": "Find certified covering, PPF, or detailing installers in a specific French city",
      "inputSchema": {
        "type": "object",
        "properties": {
          "city": {
            "type": "string",
            "description": "French city name (e.g. Paris, Lyon, Marseille)"
          },
          "service": {
            "type": "string",
            "enum": ["ppf", "total-covering", "dechroming", "teinte-vitres", "detailing", "covering-moto"]
          }
        },
        "required": ["city"]
      }
    },
    {
      "name": "request_quote",
      "description": "Request a free quote for automotive services from a certified Sprinteo installer. Response within 24h.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "service": {
            "type": "string",
            "enum": ["ppf", "total-covering", "dechroming", "teinte-vitres", "detailing", "covering-moto"]
          },
          "city": { "type": "string" },
          "vehicle": { "type": "string" },
          "email": { "type": "string", "format": "email" }
        },
        "required": ["service", "city", "email"]
      }
    }
  ],
  "contact": {
    "email": "contact@sprinteo.fr",
    "url": "https://sprinteo.fr/"
  },
  "legal": {
    "termsOfService": "https://sprinteo.fr/cgu/",
    "privacy": "https://sprinteo.fr/confidentialite/",
    "license": "proprietary"
  }
}
