{
    "schema_version": "1.0",
    "name": "Carbon.ind.in",
    "description": "Industrial Carbon Capture and Monetization Platform. DPIIT-recognized startup helping industries turn CO₂ and industrial emissions into revenue through patented modular scrubbing technology.",
    "url": "https://carbon.ind.in",
    "openapi": "https://carbon.ind.in/openapi.json",
    "llms_txt": "https://carbon.ind.in/llms.txt",
    "auth": {
        "required": false,
        "type": "none",
        "description": "All WebMCP tools are publicly accessible. No authentication token required."
    },
    "contact": {
        "email": "info@carbon.ind.in",
        "phone": "+919909989871",
        "location": "Ahmedabad, Gujarat, India"
    },
    "tools": [
        {
            "name": "get_company_info",
            "description": "Get Carbon.ind.in company overview, mission, contact details, certifications, and technology information.",
            "readOnly": true,
            "inputSchema": {
                "type": "object",
                "properties": {
                    "section": { "type": "string", "enum": ["overview","contact","certifications","technology","all"], "default": "all" }
                }
            }
        },
        {
            "name": "get_services",
            "description": "Get all service offerings, adoption models (Zero-CAPEX, Capex Purchase, Cluster Hub), revenue streams, and ROI metrics.",
            "readOnly": true,
            "inputSchema": {
                "type": "object",
                "properties": {
                    "model": { "type": "string", "enum": ["zero_capex","capex_purchase","cluster_hub","all"], "default": "all" }
                }
            }
        },
        {
            "name": "get_blog_posts",
            "description": "Fetch latest industrial insights articles and case studies.",
            "readOnly": true,
            "inputSchema": {
                "type": "object",
                "properties": {
                    "limit":    { "type": "integer", "minimum": 1, "maximum": 10, "default": 5 },
                    "category": { "type": "string" }
                }
            }
        },
        {
            "name": "get_carbon_capture_estimate",
            "description": "Calculate CO₂ capture volume and revenue estimate based on boiler capacity in TPH.",
            "readOnly": true,
            "inputSchema": {
                "type": "object",
                "required": ["boiler_capacity_tph"],
                "properties": {
                    "boiler_capacity_tph": { "type": "number", "minimum": 0.5, "maximum": 100 }
                }
            }
        },
        {
            "name": "calculate_carbon_footprint",
            "description": "Calculate carbon emissions (CO₂e) from energy, transport, or waste activities. Returns kg CO₂e and tree-offset equivalent.",
            "readOnly": true,
            "inputSchema": {
                "type": "object",
                "required": ["activityType","quantity","unit"],
                "properties": {
                    "activityType": { "type": "string", "enum": ["energy","transport","waste"] },
                    "quantity":     { "type": "number", "minimum": 0 },
                    "unit":         { "type": "string", "enum": ["kWh","km","kg"] },
                    "subtype":      { "type": "string" }
                }
            }
        },
        {
            "name": "subscribe_newsletter",
            "description": "Subscribe an email address to the weekly carbon market newsletter. Confirm with user before subscribing.",
            "readOnly": false,
            "requiresConfirmation": true,
            "inputSchema": {
                "type": "object",
                "required": ["email"],
                "properties": {
                    "email": { "type": "string", "format": "email" }
                }
            }
        },
        {
            "name": "request_carbon_audit",
            "description": "PRIMARY ACTION: Submit site survey request for industrial carbon capture assessment. Opens modal, pre-fills form, auto-submits to engineering team.",
            "readOnly": false,
            "requiresConfirmation": false,
            "inputSchema": {
                "type": "object",
                "required": ["name","company","phone","location"],
                "properties": {
                    "name":     { "type": "string" },
                    "company":  { "type": "string" },
                    "phone":    { "type": "string" },
                    "email":    { "type": "string", "format": "email" },
                    "industry": { "type": "string", "enum": ["Chemical / Pharma","Power / Thermal","Steel / Metal","Cement / Ceramics","Textile Processing","Other Manufacturing"] },
                    "location": { "type": "string" },
                    "message":  { "type": "string" }
                }
            }
        }
    ],
    "primary_action": "request_carbon_audit",
    "categories": ["industrial","carbon-capture","sustainability","esg","ccus","revenue-generation"],
    "industries_served": ["Chemical","Power","Steel","Cement","Textile","Manufacturing"],
    "areaServed": "India",
    "polyfill": "https://cdn.jsdelivr.net/npm/@mcp-b/global/dist/global.iife.js"
}
