{
  "brand": "LYXOMED",
  "site": "https://lyxomed.us/",
  "note": "Five read-only Agent tools. When a browser exposes WebMCP (document.modelContext or navigator.modelContext), the product pages register them in-page. Any agent can use the HTTP fallbacks below. No cart, payment, or login on this site. Checkout is on Amazon. WebMCP is not available in every browser.",
  "http": {
    "product": "https://lyxomed.us/api/product.json",
    "tools": "https://lyxomed.us/tools.json",
    "llms": "https://lyxomed.us/llms.txt",
    "well_known": "https://lyxomed.us/.well-known/mcp.json"
  },
  "tools": [
    {
      "name": "list_products",
      "description": "Return the LYXOMED catalog on this site. One product today: the leg elevation wedge (slug, name, page URL). Read-only. No cart.",
      "annotations": {
        "readOnlyHint": true
      },
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      },
      "http": {
        "method": "GET",
        "url": "https://lyxomed.us/api/product.json",
        "fields": [
          "product.slug",
          "product.name",
          "product.page_url"
        ]
      }
    },
    {
      "name": "get_product_specs",
      "description": "Return verified specs for a LYXOMED product: brand LYXOMED, dimensions, materials, ASINs, Single UPC 850083698027, FSA/HSA eligibility, listed uses, and explicit non-claims. Defaults to the leg elevation wedge. Read-only.",
      "annotations": {
        "readOnlyHint": true
      },
      "inputSchema": {
        "type": "object",
        "properties": {
          "product": {
            "type": "string",
            "description": "Product slug. Defaults to leg-elevation-wedge, the only product on this site today."
          }
        },
        "additionalProperties": false
      },
      "http": {
        "method": "GET",
        "url": "https://lyxomed.us/api/product.json",
        "note": "Full structured product. Same facts as llms.txt."
      }
    },
    {
      "name": "list_sizes",
      "description": "Return the two widths for a LYXOMED product: Single (12.99 in, ASIN B0G1M7BSX5, UPC 850083698027) and Double (16.9 in, ASIN B0H253B1SN). Defaults to the leg elevation wedge. Read-only.",
      "annotations": {
        "readOnlyHint": true
      },
      "inputSchema": {
        "type": "object",
        "properties": {
          "product": {
            "type": "string",
            "description": "Product slug. Defaults to leg-elevation-wedge."
          }
        },
        "additionalProperties": false
      },
      "http": {
        "method": "GET",
        "url": "https://lyxomed.us/api/product.json",
        "fields": [
          "sizes",
          "amazon.single",
          "amazon.double"
        ]
      }
    },
    {
      "name": "get_amazon_url",
      "description": "Return the exact Amazon URL for size single, double, or family. Checkout is on Amazon; this site does not take payment. Read-only.",
      "annotations": {
        "readOnlyHint": true
      },
      "inputSchema": {
        "type": "object",
        "properties": {
          "size": {
            "type": "string",
            "enum": [
              "single",
              "double",
              "family"
            ],
            "description": "Which Amazon listing: single (B0G1M7BSX5), double (B0H253B1SN), or family (B0HCVQ5SRZ)."
          }
        },
        "required": [
          "size"
        ],
        "additionalProperties": false
      },
      "http": {
        "method": "GET",
        "url": "https://lyxomed.us/api/product.json",
        "fields": {
          "single": "amazon.single.url",
          "double": "amazon.double.url",
          "family": "amazon.family.url"
        },
        "urls": {
          "single": "https://www.amazon.com/dp/B0G1M7BSX5",
          "double": "https://www.amazon.com/dp/B0H253B1SN",
          "family": "https://www.amazon.com/dp/B0HCVQ5SRZ"
        }
      }
    },
    {
      "name": "get_citations",
      "description": "Return the five citations this site uses (UCSF ACL instructions, Brown Health TKA protocol, Le Guen 2025, Shelbourne 1990, Seo 2020), each with a URL. Do not add other papers. Read-only.",
      "annotations": {
        "readOnlyHint": true
      },
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      },
      "http": {
        "method": "GET",
        "url": "https://lyxomed.us/api/product.json",
        "fields": [
          "citations"
        ],
        "also": "https://lyxomed.us/llms.txt"
      }
    }
  ]
}
