{
  "name": "Nuora Health",
  "description": "UK pharmacy platform offering 9 clinical services. AI agents can discover services, check eligibility, book consultations, and manage patient notifications. GPhC regulated, CQC registered.",
  "url": "https://nuorahealth.com",
  "version": "1.0.0",
  "documentationUrl": "https://nuorahealth.com/llms.txt",
  "provider": {
    "organization": "NUORA LTD",
    "url": "https://nuorahealth.com"
  },
  "capabilities": {
    "streaming": false,
    "pushNotifications": false
  },
  "authentication": {
    "schemes": [
      {
        "type": "apiKey",
        "in": "header",
        "name": "X-Nuora-API-Key",
        "description": "API key for authenticated operations. Register at POST /api/v1/auth/register. Format: nuora_pk_..."
      }
    ]
  },
  "defaultInputModes": ["application/json"],
  "defaultOutputModes": ["application/json"],
  "skills": [
    {
      "id": "list-services",
      "name": "List Services",
      "description": "List all available pharmacy services with pricing, eligibility URLs, and booking URLs.",
      "tags": ["healthcare", "pharmacy", "services"],
      "inputModes": [],
      "outputModes": ["application/json"],
      "examples": [
        {
          "name": "List all services",
          "description": "Returns all 9 clinical services with metadata"
        }
      ]
    },
    {
      "id": "check-eligibility",
      "name": "Check Eligibility",
      "description": "Check if a patient is eligible for a specific service based on age, BMI, and medical criteria. No authentication required.",
      "tags": ["healthcare", "eligibility", "screening"],
      "inputModes": ["application/json"],
      "outputModes": ["application/json"],
      "examples": [
        {
          "name": "Weight loss eligibility",
          "description": "Check eligibility for medical weight management"
        }
      ]
    },
    {
      "id": "book-consultation",
      "name": "Book Consultation",
      "description": "Book a pharmacist video consultation for a specific service. Requires API key with write:bookings scope.",
      "tags": ["healthcare", "booking", "consultation"],
      "inputModes": ["application/json"],
      "outputModes": ["application/json"],
      "examples": [
        {
          "name": "Book weight loss consultation",
          "description": "Schedule a video consultation with a pharmacist"
        }
      ]
    }
  ],
  "endpoints": {
    "rest": "https://nuorahealth.com/api/v1/",
    "a2a": "https://nuorahealth.com/api/v1/a2a"
  }
}
