{
  "name": "Axiom Molds Precision Mold Component WebMCP Server",
  "description": "Official WebMCP service for Axiom Molds. Exposes precision mold components catalog, parametric search, technical blogs, and engineering case studies for AI Agents.",
  "version": "1.0.0",
  "homepage": "https://axiommolds.com",
  "mcp_version": "1.0",
  "transport": {
    "type": "http-rest",
    "base_url": "/api/webmcp/v1"
  },
  "rate_limit": {
    "max_requests_per_second": 50
  },
  "tools": [
    {
      "name": "search_products",
      "description": "Full-text and keyword search for precision mold component series across titles, descriptions, features, application scenarios, materials, sizing guides, and FAQs.",
      "endpoint": "/api/webmcp/v1/search-products",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "query": { "type": "string", "description": "Search keyword e.g. 'ball lock punch', 'SKD11', 'automotive stamping', 'core pin'" },
          "category": { "type": "string", "description": "Optional category filter path e.g. 'ball-lock-punches'" },
          "brand": { "type": "string", "description": "Optional brand filter" },
          "page": { "type": "integer", "default": 1 },
          "limit": { "type": "integer", "default": 20 }
        }
      }
    },
    {
      "name": "get_category_tree",
      "description": "Fetch the full hierarchical category tree of mold components with product count statistics.",
      "endpoint": "/api/webmcp/v1/get-category-tree",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_product_detail",
      "description": "Fetch detailed engineering specifications, drawings JSON, application scenarios, material specs, sizing guides, and FAQs for a specific product by slug or series_code.",
      "endpoint": "/api/webmcp/v1/get-product-detail",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "slug": { "type": "string", "description": "Product URL slug or series_code e.g. 'double-stepped-shoulder-punches'" }
        },
        "required": ["slug"]
      }
    },
    {
      "name": "get_related_products",
      "description": "Fetch related or complementary mold components for a given product series.",
      "endpoint": "/api/webmcp/v1/get-related-products",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "series_code": { "type": "string", "description": "Target product series code or slug" },
          "limit": { "type": "integer", "default": 6 }
        },
        "required": ["series_code"]
      }
    },
    {
      "name": "get_latest_blogs",
      "description": "Fetch latest technical mold engineering articles, design guidelines, and buyer guides.",
      "endpoint": "/api/webmcp/v1/get-latest-blogs",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "category": { "type": "string", "description": "Article category filter" },
          "keyword": { "type": "string", "description": "Search keyword" },
          "page": { "type": "integer", "default": 1 },
          "limit": { "type": "integer", "default": 20 }
        }
      }
    },
    {
      "name": "get_case_studies",
      "description": "Fetch customer application case studies (BMW, BYD Yangwang, NVIDIA, Xiaomi).",
      "endpoint": "/api/webmcp/v1/get-case-studies",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "industry": { "type": "string", "description": "Industry filter e.g. 'Automotive', 'Electronics', 'EV'" }
        }
      }
    }
  ]
}
