{
  "schema_version": "2025-06-18",
  "name": "gcbmtech",
  "display_name": "GCBM LLC — Automated Manufacturing",
  "description": "Model Context Protocol manifest for GCBM LLC, an automated precision manufacturing facility in Moses Lake, WA offering reverse engineering, CMM-certified 3D scanning, precision waterjet cutting, and additive manufacturing.",
  "homepage": "https://gcbmtech.com",
  "contact": {
    "name": "GCBM LLC",
    "address": "1652 Fairway Dr NE, Moses Lake, WA 98837"
  },
  "tools": [
    {
      "name": "submit_cad_quote",
      "description": "Submit a CAD/geometry file reference and process parameters to queue an automated quote for reverse engineering, CMM scanning, waterjet cutting, or 3D printing. A human-confirmed or Spark-generated quote is emailed to the address provided.",
      "endpoint": "https://gcbmtech.com/api/rfq",
      "method": "POST",
      "input_schema": {
        "type": "object",
        "required": ["client_name", "service_requested", "project_description"],
        "properties": {
          "client_name": { "type": "string" },
          "company_name": { "type": "string" },
          "contact_phone": { "type": "string" },
          "contact_email": { "type": "string", "format": "email" },
          "service_requested": {
            "type": "string",
            "enum": ["reverse_engineering", "cmm_scanning", "waterjet_cutting", "3d_printing"]
          },
          "project_description": { "type": "string" },
          "cad_file_url": { "type": "string", "format": "uri" }
        }
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "status": { "type": "string" },
          "tracking_id": { "type": "string" },
          "message": { "type": "string" }
        }
      }
    },
    {
      "name": "get_capabilities",
      "description": "Return GCBM LLC's full structured capability list, tolerances, and current benchmark pricing formulas for all four manufacturing processes.",
      "endpoint": "https://gcbmtech.com/llms-full.txt",
      "method": "GET",
      "input_schema": { "type": "object", "properties": {} },
      "output_schema": {
        "type": "object",
        "description": "Plain-text machine documentation; see /llms-full.txt for structure."
      }
    },
    {
      "name": "check_turnaround_time",
      "description": "Return general lead-time guidance by process. This is static reference guidance, not a live per-job status lookup — GCBM does not currently expose real-time queue depth to agents. For a specific submission, quote the tracking_id from submit_cad_quote when contacting GCBM directly.",
      "endpoint": "https://gcbmtech.com/turnaround.json",
      "method": "GET",
      "input_schema": { "type": "object", "properties": {} },
      "output_schema": {
        "type": "object",
        "properties": {
          "typical_lead_times": { "type": "object" },
          "quote_response_time": { "type": "string" }
        }
      }
    }
  ],
  "authentication": "none"
}
