{
  "name": "palais-unterkunft-erfurt",
  "description": "MCP server for Palais Unterkunft hotel — provides hotel information and booking inquiry tools",
  "version": "1.0.0",
  "serverUrl": "https://palais-unterkunft.de/api",
  "tools": [
    {
      "name": "get_hotel_info",
      "description": "Get complete hotel information: address, contact, amenities, check-in/out times, rating",
      "inputSchema": { "type": "object", "properties": {} }
    },
    {
      "name": "get_rooms",
      "description": "Get all room types with capacity and pricing information",
      "inputSchema": { "type": "object", "properties": {} }
    },
    {
      "name": "submit_inquiry",
      "description": "Submit a booking inquiry to the hotel. Hotel responds within 24h.",
      "inputSchema": {
        "type": "object",
        "required": ["name", "email"],
        "properties": {
          "name": { "type": "string" },
          "email": { "type": "string" },
          "checkin": { "type": "string", "format": "date" },
          "checkout": { "type": "string", "format": "date" },
          "guests": { "type": "integer" },
          "message": { "type": "string" }
        }
      }
    }
  ],
  "contact": "info@palais-erfurt.de",
  "auth": { "type": "none" }
}
