{
  "$schema": "https://modelcontextprotocol.io/schema.json",
  "name": "locatool-pro-mcp",
  "title": "Locatool Pro MCP Server by DevSupAi",
  "description": "Model Context Protocol (MCP) server providing AI agents with tool-calling capabilities for equipment rental, vehicle fleet planning, and quotes on Locatool Pro.",
  "version": "1.0.0",
  "vendor": {
    "name": "DevSupAi",
    "url": "https://locatool.devsupai.fr",
    "contact": "contact@devsupai.fr"
  },
  "endpoints": {
    "openapi": "https://locatool.devsupai.fr/openapi.json",
    "openapi_yaml": "https://locatool.devsupai.fr/openapi.yaml",
    "documentation": "https://locatool.devsupai.fr/developers",
    "llms": "https://locatool.devsupai.fr/llms.txt"
  },
  "tools": [
    {
      "name": "get_openapi_spec",
      "description": "Returns the complete OpenAPI 3.1 REST specification for Locatool Pro.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "send_document_email",
      "description": "Dispatches a rental contract, quote, or invoice via Brevo SMTP.",
      "inputSchema": {
        "type": "object",
        "required": ["organizationId", "to", "subject", "documentHtml", "documentType"],
        "properties": {
          "organizationId": { "type": "string" },
          "to": { "type": "string" },
          "subject": { "type": "string" },
          "documentHtml": { "type": "string" },
          "documentType": { "type": "string", "enum": ["devis", "contrat", "facture", "colisage"] }
        }
      }
    }
  ]
}
