{
  "name": "SureFire Biosciences",
  "description": "Biotech reagent supplier. Cost-effective Sanger sequencing reagents (BigDye replacements), RNA/DNA room-temperature preservation (GenTegra), and molecular QC controls based on true human plasma (Anchor Molecular). 30%+ savings vs major suppliers. Free samples available. Made in the USA.",
  "version": "1.0",
  "url": "https://surefirebio.com",
  "auth": "none",
  "contact": {
    "email": "contact@surefirebio.com",
    "phone": "888-765-2097"
  },
  "capabilities": ["product-search", "quote-request", "sample-request"],
  "endpoints": {
    "product_catalog": {
      "url": "/products.json",
      "method": "GET",
      "description": "Full product catalog with specs, categories, and compatibility info"
    },
    "request_quote_or_sample": {
      "url": "/contact.html",
      "method": "POST",
      "description": "Submit a quote request or free sample request. See /api/openapi.json for field schema.",
      "content_type": "application/x-www-form-urlencoded",
      "fields": {
        "fname": "First name (required)",
        "lname": "Last name",
        "email": "Email address (required)",
        "phone": "Phone number",
        "organization": "Company/university name",
        "product": "Product line: Sanger Sequencing Reagents | RNA/DNA Preservation | Molecular QC Controls | Multiple Products",
        "message": "Details about your needs"
      }
    },
    "llms_txt": {
      "url": "/llms.txt",
      "description": "Human and LLM-readable overview of the company and products"
    },
    "openapi_spec": {
      "url": "/api/openapi.json",
      "description": "OpenAPI 3.1 specification for all endpoints"
    }
  },
  "tools": [
    {
      "name": "search_products",
      "description": "Search SureFire Biosciences product catalog by category, application, or keyword",
      "input": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "enum": ["Sanger Sequencing Reagents", "RNA/DNA Preservation", "Molecular QC Controls"]
          },
          "query": {
            "type": "string",
            "description": "Free text search (e.g., 'BigDye replacement', 'room temperature RNA', 'ctDNA controls')"
          }
        }
      },
      "endpoint": "/products.json",
      "method": "GET",
      "instructions": "Fetch /products.json and filter the products array client-side by category or keyword match in name/description/tags fields."
    },
    {
      "name": "request_sample",
      "description": "Request a free evaluation sample of any SureFire Biosciences product",
      "input": {
        "type": "object",
        "required": ["fname", "email", "product"],
        "properties": {
          "fname": { "type": "string" },
          "email": { "type": "string", "format": "email" },
          "product": { "type": "string" },
          "organization": { "type": "string" },
          "message": { "type": "string" }
        }
      },
      "endpoint": "/contact.html",
      "method": "POST",
      "content_type": "application/x-www-form-urlencoded"
    }
  ]
}
