{
  "$schema": "https://modelcontextprotocol.io/schemas/server-card/draft/server-card.schema.json",
  "serverInfo": {
    "name": "korkimya-catalog",
    "version": "1.0.0",
    "title": "KORKİMYA Product Catalog",
    "description": "Read-only access to the KORKİMYA chemical product catalog and contact information. Available to agents running in a browser context via WebMCP, or via the public REST endpoint at /api/products.",
    "vendor": "KORKİMYA",
    "homepage": "https://korkimya.com",
    "contact": "info@korkimya.com"
  },
  "transport": {
    "type": "webmcp",
    "registration": "navigator.modelContext.provideContext()",
    "pages": [
      "https://korkimya.com",
      "https://korkimya.com/sektorler",
      "https://korkimya.com/urunler"
    ],
    "restFallback": "https://korkimya.com/api/products"
  },
  "capabilities": {
    "tools": {
      "list": [
        {
          "name": "searchProducts",
          "description": "Search the KORKİMYA chemical catalog by product name, CAS number, UN number, formula, or industry.",
          "inputSchema": {
            "type": "object",
            "properties": {
              "query": {
                "type": "string"
              },
              "limit": {
                "type": "integer",
                "default": 10
              }
            },
            "required": [
              "query"
            ]
          }
        },
        {
          "name": "listIndustries",
          "description": "List all 19 industry categories with product counts.",
          "inputSchema": {
            "type": "object",
            "properties": {}
          }
        },
        {
          "name": "getProduct",
          "description": "Fetch a single product by its industry slug and product slug.",
          "inputSchema": {
            "type": "object",
            "properties": {
              "industrySlug": {
                "type": "string"
              },
              "productSlug": {
                "type": "string"
              }
            },
            "required": [
              "industrySlug",
              "productSlug"
            ]
          }
        },
        {
          "name": "getContact",
          "description": "Return KORKİMYA's B2B contact information (email, phone, address, KVKK contact).",
          "inputSchema": {
            "type": "object",
            "properties": {}
          }
        }
      ]
    },
    "resources": {
      "list": []
    },
    "prompts": {
      "list": []
    }
  }
}