← WebMCP Directory

Tool tree

virtualconsultant.online

Health & Education
https://virtualconsultant.online/
Free online orthodontic consultation in the UK: upload smile photos for a clinician-reviewed braces or aligner quote and find an orthodontist near you.
Explore capabilities

Tools verified

find-orthodontistsAnswer

Find published UK orthodontic practices by town, city, or postcode. Returns a URL to the matching location page listing local practices.

View tool JSON
{
  "name": "find-orthodontists",
  "kind": "answer",
  "impl": "imperative",
  "description": "Find published UK orthodontic practices by town, city, or postcode. Returns a URL to the matching location page listing local practices.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "location": {
        "type": "string",
        "description": "UK town, city, or postcode, e.g. \"Manchester\" or \"SW1A 1AA\""
      }
    },
    "required": [
      "location"
    ]
  },
  "page": "/"
}
get-orthodontic-quoteAnswer

Returns the URL to start a free photo-based orthodontic assessment and get a treatment quote from a UK orthodontic practice.

View tool JSON
{
  "name": "get-orthodontic-quote",
  "kind": "answer",
  "impl": "imperative",
  "description": "Returns the URL to start a free photo-based orthodontic assessment and get a treatment quote from a UK orthodontic practice.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  },
  "page": "/"
}
check-nhs-eligibilityAnswer

Returns the URL to the IOTN NHS eligibility checker, which helps UK patients find out if they qualify for free NHS orthodontic treatment.

View tool JSON
{
  "name": "check-nhs-eligibility",
  "kind": "answer",
  "impl": "imperative",
  "description": "Returns the URL to the IOTN NHS eligibility checker, which helps UK patients find out if they qualify for free NHS orthodontic treatment.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  },
  "page": "/"
}
get-treatment-costsAnswer

Returns UK orthodontic treatment cost information including braces, clear aligners, and NHS prices. Fetches authoritative markdown content.

View tool JSON
{
  "name": "get-treatment-costs",
  "kind": "answer",
  "impl": "imperative",
  "description": "Returns UK orthodontic treatment cost information including braces, clear aligners, and NHS prices. Fetches authoritative markdown content.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "treatment": {
        "type": "string",
        "description": "Treatment type: \"braces\", \"invisalign\", \"clear-aligners\", \"nhs\", \"retainers\", or \"all\"",
        "enum": [
          "braces",
          "invisalign",
          "clear-aligners",
          "nhs",
          "retainers",
          "all"
        ]
      }
    },
    "required": [
      "treatment"
    ]
  },
  "page": "/"
}
get-page-contentAnswer

Fetches the markdown content of any public page on virtualconsultant.online. Use this to read treatment guides, eligibility information, NHS resources, and clinical FAQs.

View tool JSON
{
  "name": "get-page-content",
  "kind": "answer",
  "impl": "imperative",
  "description": "Fetches the markdown content of any public page on virtualconsultant.online. Use this to read treatment guides, eligibility information, NHS resources, and clinical FAQs.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "path": {
        "type": "string",
        "description": "URL path, e.g. \"/guides/iotn-explained\" or \"/nhs-orthodontics\""
      }
    },
    "required": [
      "path"
    ]
  },
  "page": "/"
}