{
  "protocolVersion": "1.0",
  "server": {
    "name": "SureFire Biosciences",
    "version": "1.0.0"
  },
  "description": "Biotech reagent supplier. Sanger sequencing reagents (BigDye replacements at ~30% savings), RNA/DNA preservation (GenTegra), molecular QC controls (Anchor Molecular). Free samples available.",
  "capabilities": ["product-query", "sample-request", "quote-request"],
  "resources": [
    {
      "uri": "https://surefirebio.com/products.json",
      "name": "Product Catalog",
      "mimeType": "application/json",
      "description": "Complete product catalog (17 products) with specs, categories, tags, pricing hints, and compatibility info"
    },
    {
      "uri": "https://surefirebio.com/llms.txt",
      "name": "Company Overview",
      "mimeType": "text/markdown",
      "description": "LLM-readable company and product overview with FAQ"
    },
    {
      "uri": "https://surefirebio.com/sequencing.md",
      "name": "Sequencing Products Detail",
      "mimeType": "text/markdown",
      "description": "Detailed Sanger sequencing product info with comparison table, specs, and FAQ"
    },
    {
      "uri": "https://surefirebio.com/preservation.md",
      "name": "Preservation Products Detail",
      "mimeType": "text/markdown",
      "description": "Detailed RNA/DNA preservation product info with comparison table and FAQ"
    },
    {
      "uri": "https://surefirebio.com/molecular-controls.md",
      "name": "QC Controls Products Detail",
      "mimeType": "text/markdown",
      "description": "Detailed molecular QC controls info organized by application area"
    },
    {
      "uri": "https://surefirebio.com/api/openapi.json",
      "name": "API Specification",
      "mimeType": "application/json",
      "description": "OpenAPI 3.1 spec for product catalog and contact form endpoints"
    }
  ],
  "tools": [
    {
      "name": "search_products",
      "description": "Fetch the product catalog and filter client-side by category, tags, replaces field, or free_sample boolean",
      "endpoint": "https://surefirebio.com/products.json",
      "method": "GET",
      "inputSchema": {
        "type": "object",
        "description": "No server-side parameters. Fetch the full JSON and filter in your code.",
        "properties": {}
      }
    },
    {
      "name": "request_sample",
      "description": "Request a free evaluation sample or quote. POSTs to FormSubmit.co endpoint. Response is HTTP 302 redirect (not JSON).",
      "endpoint": "https://surefirebio.com/contact.html",
      "method": "POST",
      "content_type": "application/x-www-form-urlencoded",
      "inputSchema": {
        "type": "object",
        "required": ["fname", "email"],
        "properties": {
          "fname": { "type": "string", "description": "First name" },
          "lname": { "type": "string", "description": "Last name" },
          "email": { "type": "string", "format": "email", "description": "Email for response" },
          "phone": { "type": "string", "description": "Phone number" },
          "organization": { "type": "string", "description": "University, hospital, or company" },
          "product": {
            "type": "string",
            "enum": ["Sanger Sequencing Reagents", "RNA/DNA Preservation", "Molecular QC Controls", "Multiple Products"]
          },
          "interest": {
            "type": "string",
            "enum": ["Free Sample", "Product Pricing", "Volume Quote", "Technical Support", "Service Contract", "Other"]
          },
          "message": { "type": "string", "description": "Specific products needed, volume, current reagents, etc." }
        }
      }
    }
  ],
  "prompts": [
    {
      "name": "find_bigdye_replacement",
      "description": "Find a cost-effective replacement for BigDye Terminator v3.1",
      "template": "Search products.json for tags containing 'bigdye-replacement'. The product QD-V31 (QuantumDye Terminator v3.1) is a direct drop-in replacement at ~30% less cost."
    },
    {
      "name": "find_rna_preservation",
      "description": "Find room-temperature RNA preservation products",
      "template": "Filter products.json by category 'RNA/DNA Preservation'. GenTegra RNA (GT-RNA) for general use, RNAssure for RIN preservation, RNAdvantage for guaranteed RIN >= 7."
    },
    {
      "name": "request_free_sample",
      "description": "Request a free evaluation sample",
      "template": "POST to /contact.html with fname, email, product category, and interest='Free Sample'. Include specific product ID in the message field."
    }
  ]
}
