{
  "$schema": "https://modelcontextprotocol.io/schema/server-card.json",
  "serverInfo": {
    "name": "h2plasticos-mcp",
    "title": "H2 Plásticos — Technical Polymer & Quotation MCP Server",
    "description": "Model Context Protocol server for searching thermoplastic datasheets, elastomeric specifications (TPE, TPU, TPV, TR), circular PCR resins, and submitting industrial inquiries.",
    "version": "1.0.0",
    "websiteUrl": "https://h2plasticos.com.br",
    "documentationUrl": "https://h2plasticos.com.br/llms.txt"
  },
  "transport": {
    "type": "sse",
    "endpoint": "https://h2plasticos.com.br/mcp/sse"
  },
  "capabilities": {
    "tools": {
      "listChanged": false
    },
    "resources": {
      "subscribe": false,
      "listChanged": false
    },
    "prompts": {
      "listChanged": false
    }
  },
  "tools": [
    {
      "name": "search_polymers",
      "description": "Search polymer grades by material family (TPE, TPU, TPV, PCR, PA, Masterbatch), hardness, UV resistance, or industrial application.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Search term, polymer name, or sector (e.g. 'TPE automotive', 'TPU shore 90A', 'PCR PP')"
          }
        },
        "required": [
          "query"
        ]
      }
    },
    {
      "name": "get_datasheet",
      "description": "Get detailed technical specifications, processing parameters, and mechanical properties for a polymer grade.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "product_slug": {
            "type": "string",
            "description": "Product slug e.g. 'tpe', 'tpu', 'tpv', 'revora-pcr'"
          }
        },
        "required": [
          "product_slug"
        ]
      }
    },
    {
      "name": "request_quote",
      "description": "Submit a quotation inquiry or sample request for an industrial buyer.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "company_name": {
            "type": "string"
          },
          "product": {
            "type": "string"
          },
          "estimated_volume_kg": {
            "type": "number"
          },
          "contact_email": {
            "type": "string"
          }
        },
        "required": [
          "company_name",
          "product",
          "contact_email"
        ]
      }
    }
  ],
  "resources": [
    {
      "uri": "h2://catalog",
      "name": "Full Industrial Polymer Catalog",
      "mimeType": "text/markdown",
      "description": "Complete product catalog of engineering polymers, elastomers, and circular compounds."
    },
    {
      "uri": "h2://technical/tpe",
      "name": "TPE Technical Overview",
      "mimeType": "text/markdown",
      "description": "TPE-S, TPE-O, and TPE-V technical parameters, hardness ranges, and processing guide."
    }
  ]
}