Close Menu
    Facebook LinkedIn YouTube WhatsApp X (Twitter) Pinterest
    Trending
    • Canyon Spectral:ON CF 8 Electric Mountain Bike: Beginner-Friendly, Under $5K
    • US-sanctioned currency exchange says $15 million heist done by “unfriendly states”
    • This New Air Purifier Filter Can Remove Cannabis Smoke Odor, Just in Time for 4/20
    • Portable water filter provides safe drinking water from any source
    • MAGA Is Increasingly Convinced the Trump Assassination Attempt Was Staged
    • NCAA seeks faster trial over DraftKings disputed March Madness branding case
    • AI Trusted Less Than Social Media and Airlines, With Grok Placing Last, Survey Says
    • Extragalactic Archaeology tells the ‘life story’ of a whole galaxy
    Facebook LinkedIn WhatsApp
    Times FeaturedTimes Featured
    Saturday, April 18
    • Home
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    • More
      • AI
      • Robotics
      • Industries
      • Global
    Times FeaturedTimes Featured
    Home»Artificial Intelligence»How I Use AI to Convince Companies to Adopt Sustainability
    Artificial Intelligence

    How I Use AI to Convince Companies to Adopt Sustainability

    Editor Times FeaturedBy Editor Times FeaturedNovember 27, 2025No Comments13 Mins Read
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr WhatsApp Email
    Share
    Facebook Twitter LinkedIn Pinterest Telegram Email WhatsApp Copy Link


    than convincing somebody of a reality they can’t see in their very own knowledge.

    Information science and sustainability specialists face the identical downside: our ideas could also be too summary and theoretical, making them tough for decision-makers to narrate to.

    I realized this the arduous manner whereas developping my startup!

    After I printed a case study on Green Inventory Management on TDS in 2024, I believed the logic was strong and convincing, however the influence was restricted.

    Inexperienced Stock Administration = Optimising Retailer Replenishment Methods to Cut back CO2 Emissions (Picture by Samir Saci)

    The article defined the mathematical idea behind it and used an precise case examine to display the sustainability advantages.

    But it didn’t convert sceptics.

    Buyer: “I’m positive it received’t work with our operations!”

    Why? As a result of it wasn’t linked to their knowledge and constraints.

    So I made a decision to vary the strategy.

    I packaged the simulation device in a FastAPI microservice and gave my prospects the flexibility to check the mannequin themselves utilizing an MCP Server linked to Claude Desktop.

    Easy setup of native MCP server linked to the analytics product – (Picture by Samir Saci)

    The target was to have them ask the LLM to run their very own situations, modify their parameters, and see how CO₂ emissions dropped in response to completely different stock insurance policies.

    On this article, I’ll share the strategy I used for this experiment and the suggestions I acquired from a prospect, the Provide Chain Director of a retail group based mostly within the Asia Pacific area.

    What’s Inexperienced Stock Administration?

    On this part, I wish to briefly clarify the idea of Inexperienced Stock Administration so you’ve the context to grasp the device’s added worth.

    Context: Stock Administration for a Retail Firm

    Allow us to put ourselves in our Provide Chain Director’s sneakers.

    His groups (stock groups, warehouse and transportation operations) are liable for replenishing shops from a central distribution centre.

    Retailer Replenishment Strategy of our retail firm – (Picture by Samir Saci)

    Once they want particular merchandise, shops mechanically ship replenishment orders by way of their ERP to the Warehouse Administration System.

    Stock Administration Guidelines — Periodic Evaluation Coverage (Picture by Samir Saci)

    These automated orders observe guidelines applied by the stock group, referred to as the periodic overview “Order-Up-To-Degree (R, S)” coverage.

    1. The ERP is reviewing shops’ stock ranges, additionally referred to as stock readily available (IOH), each R days
    2. The delta between the goal stock S and the stock stage is calculated: Δ = S— IOH
    3. A Replenishment Order is created and transmitted to the warehouse with the amount: Q = S — IOH

    After transmission, the order is ready on the warehouse and delivered to your retailer inside a selected lead time (LD) in days.

    Instance of Periodic Evaluation Coverage – (Picture by Samir Saci)

    To be extra concrete, I share the instance above:

    • R = 25 days: we overview the stock each 25 days as you possibly can see within the blue scatter plot
    • S = 1,995 models: we ordered to succeed in this stage, as proven within the newest graph.

    The stock groups within the programs often set these parameters, and the replenishment orders are mechanically triggered.

    What if we optimise these parameters?

    Impacts on Logistics Operations

    Based mostly on my expertise, these parameters are, more often than not, not set optimally..

    The issue is that they considerably influence the effectivity of your warehouse and transportation operations.

    This will increase carton and plastic consumption and reduces productiveness.

    Impression on Carton Utilization – (Picture by Writer)

    Within the instance above, gadgets are saved in cartons containing models that may be picked individually.

    If the order amount is 5, the operator will:

    • Open a field of 20 models and take 5 models ;
    • Take a brand new field and put these things in it ;
    • Palletise the containers utilizing plastic movie ;

    The opposite influence is on truck filling charge and CO2 emissions.

    Supply Frequency and CO2 emissions – (Picture by Samir Saci)

    With a excessive supply frequency, you cut back the amount per cargo.

    This results in the usage of smaller vehicles that will not be full.

    What can we do?

    Goals of Inexperienced Stock Administration

    We will take a look at a number of situations, with completely different operational parameters, to seek out the optimum setup.

    For that, I’ve loaded buyer knowledge into the simulation mannequin
    to check the device with actual situations.

    Simulation Parameters- (Picture by Samir Saci)

    Customers can modify a few of these parameters to simulate completely different situations.

    class LaunchParamsGrinv(BaseModel):
        n_day: int = 30           # Variety of days within the simulation
        n_ref: int = 20           # Variety of SKUs within the simulation
        pcs_carton: int = 15      # Variety of items per full carton
        cartons_pal: int = 25     # Variety of cartons per pallet
        pallet_truck: int = 10    # Variety of pallets per truck
        okay: float = 3              # Security issue for security inventory
        CSL: float = 0.95         # Cycle service stage goal
        LD: float = 1             # Lead time for supply (days)
        R: float = 2              # Evaluation interval (days)
        carton_weight: float = 0.3    # Carton materials weight (kg)
        plastic_weight: float = 0.173 # Plastic movie weight per pallet (kg)

    These parameters embody:

    • n_day and n_ref : outline the scope of simulation
    • pcs_carton, cartons_pal, LD and pallet_truck: parameters linked to warehousing and transportation operations
    • carton_weight, plastic_weight: sustainability parameters
    • R, okay and CSL: parameters set by the stock group

    I need our Provide Chain Director to take a seat together with his groups (stock, warehouse, transportation and sustainability) to problem the established order.

    If they should attain a selected goal, our director can:

    • Problem his stock groups to seek out higher overview durations (R), or cycle service stage (CSL) targets
    • Ask the sustainability group to seek out lighter carton supplies
    • Redesign his warehouse operations to cut back the lead time (LD)
    Method of the device (Picture by Samir Saci)

    For that, we have to present them with a device to simulate the influence of particular modifications.

    Instance of Evaluation – CO2 emissions for various state of affairs of supply frequency – (Picture by Samir Saci)

    That is what we’re going to do with the help of an MCP Server linked to Claude AI.

    Demo of the Inexperienced Stock Administration AI Assistant

    Now that we all know how this simulation device can add worth to my prospects, let me present you examples of analyses they’ve carried out.

    These assessments had been carried out utilizing buyer knowledge over a simulation horizon of as much as 90 days.

    I’ve replicated the questions and interactions utilizing anonymised dummy knowledge to keep away from sharing confidential info right here.

    Onboarding of customers

    I’ve linked the MCP server to the Claude setting utilized by the Provide Chain managers to have them “play with the device”.

    The bulk didn’t take the time to overview the preliminary case examine and immediately requested Claude in regards to the device.

    Preliminary Interplay – (Picture by Samir Saci)

    Hopefully, I’ve documented the MCP instruments to supply context to the agent, like within the toot launch_greeninv shared under.

    @mcp.device()
    def launch_greeninv(params: LaunchParamsGrinv):
        """
        Launch a whole Inexperienced Stock Administration simulation.
    
        This device sends the enter parameters to the FastAPI microservice
        (by way of POST /grinv/launch_grinv) and returns detailed sustainability
        and operational KPIs for the chosen replenishment rule (Evaluation Interval R).
    
        -------------------------------------------------------------------------
        🌱 WHAT THIS TOOL DOES
        -------------------------------------------------------------------------
        It runs the complete simulation described within the "Inexperienced Stock Administration"
        case examine, reproducing the conduct of an actual retail replenishment system
        utilizing a (R, S) Periodic Evaluation Coverage.
    
        The simulation estimates:
          - Replenishment portions and order frequency
          - Inventory ranges and stockouts
          - Variety of full and combined cartons
          - Variety of pallets and truck deliveries
          - CO₂ emissions for every retailer and globally
          - Carton materials and plastic utilization
          - Operator productiveness (orderlines and items per line)
        
        [REMAINDER OF DOC-STRING OMITTED FOR CONCISION]
        """
        logging.information(f"[GreenInv] Operating simulation with params: {params.dict()}")
    
        strive:
            with httpx.Consumer(timeout=120) as consumer:
                response = consumer.put up(LAUNCH, json=params.dict())
                response.raise_for_status()
    
            consequence = response.json()
            last_run = consequence
    
            return {
                "standing": "success",
                "message": "Simulation accomplished",
                "outcomes": consequence
            }
    
        besides Exception as e:
            logging.error(f"[GreenInv] Error throughout API name: {e}")                                                                                
            return {
                "standing": "error",
                "message": str(e)
            }

    I used to be fairly glad with Claude’s introduction to the device.

    It begins with the introduction of the core capabilities of the instruments from an operational viewpoint.

    Introduction of the device by Claude – (Picture by Samir Saci)

    Rapidly, our director began to ship me lengthy emails with questions on how you can use the device:

    • The best way to arrange the parameters?
    • Who ought to I contain on this train?

    My preliminary reflex was to reply: “Why don’t you ask Claude?”.

    That is what they did, and the outcomes are wonderful. Claude proposed a framework of research.

    Framework of collaborative work for inexperienced stock optimisation – (Picture by Samir Saci)

    This framework is sort of good; I might simply have put the lead time (LD) additionally within the scope of the Warehouse Supervisor.

    Nonetheless, I must admit that I might by no means have been in a position to generate such a concise and well-formatted framework alone.

    Then, Claude proposed a plan for this examine with a number of phases.

    Pattern of the evaluation plan proposed by Claude – (Picture by Samir Saci)

    Let me take you thru the completely different phases from the consumer’s perspective.

    Part 1: Baseline Evaluation

    I suggested the group to repeatedly ask Claude for a pleasant dashboard with a concise govt abstract.

    That’s what they did for Part 1.

    Person asks for a run of the baseline – (Picture by Samir Saci)

    As you possibly can see within the screenshot above, Claude used the MCP Server device launch_greeninv to run an evaluation with the default parameters outlined within the Pydantic mannequin.

    With the outputs, it generated the Government Abstract for our director.

    Government Abstract of the preliminary run – (Picture by Samir Saci)

    The abstract is concise and straight to the purpose.

    It compares the outputs (key efficiency indicators) to the targets shared within the MCP docstring and the grasp immediate.

    What in regards to the managers?

    Then it generated team-specific outputs, together with tables and feedback that clearly highlighted probably the most vital points, as proven within the instance under.

    Instance of the Warehouse Supervisor View – (Picture by Samir Saci)

    What’s fascinating right here is that our warehouse supervisor solely talked about the goal items per line in a earlier message.

    Meaning we will have the device study not solely from the MCP’s instruments docstrings, grasp immediate, and Pydantic fashions, but additionally from consumer interactions.

    Instance of Sustainability Group view – (Picture by Samir Saci)

    Lastly, the device demonstrated its skill to have a strategic strategy, offering mid-term projections and alerting on the important thing indicators.

    Subsequent Steps proposed to the Director – (Picture by Samir Saci)

    Nonetheless, nothing is ideal.

    When you’ve weak prompting, Claude by no means loses the chance to hallucinate and suggest selections outdoors the scope of the examine.

    Allow us to proceed the train, following Anthropic’s mannequin, and proceed to Part 2.

    Part 2: State of affairs Planning

    After brainstorming with its group, our director collected a number of situations from every supervisor.

    Situations collected from the 4 managers – (Picture by Samir Saci)

    What we will see right here is that every supervisor needed to problem the parameters targeted on their scope of accountability.

    This thought course of is then transcribed into actions.

    Claude determined to run the six situations listed above.

    The problem right here is to compile all the outcomes into an artificial, insight-driven abstract.

    Instance from the earlier case examine with a spotlight solely on carton utilization – (Picture by Samir Saci)

    Within the case examine printed in 2024, I targeted solely on the primary three situations, analyzing every efficiency indicator individually.

    What about Claude?

    Claude was smarter.

    State of affairs Comparability Matrix – (Picture by Samir Saci)

    Though we had the identical sort of knowledge readily available, it produced one thing extra “cross-functional” and decision-driven.

    • Now we have business-friendly names for every state of affairs which are comprehensible throughout features.
    • Every state of affairs is linked to the group that pushed for it.

    Lastly, it supplied an optimum state of affairs that may be a consensus between the groups.

    Rationalization and rating card of the consensus state of affairs – (Picture by Samir Saci)

    We’re even supplied with a scorecard that explains to every group why the state of affairs is finest for everyone.

    For a extra detailed breakdown of the agent’s outputs, be at liberty to have a look at this tutorial:

    Conclusion

    A brand new hope for the idea of Inexperienced Stock Administration

    After a few weeks of experimentation, the Provide Chain Director is satisfied of the necessity to implement Inexperienced Stock Administration.

    The one bottleneck right here is on their aspect now.

    With Claude’s help, our 4 managers concerned within the examine understood the influence of their roles on the distribution chain’s general effectivity.

    Matrix of Parameters Management by Group – (Picture by Samir Saci)

    This helps us at LogiGreen onboard Provide Chain departments for complicated optimisation workouts like this one.

    In my view, it’s simpler to conduct a inexperienced transformation when all groups have possession and sponsorship.

    And the one strategy to get that’s to ensure everyone understands what we’re doing.

    Based mostly on the preliminary results of this modest experiment, I believe we’ve got discovered a superb device for that.

    Would you like different case research utilizing MCP Server for Provide Chain Optimisation?

    AI Agent for Provide Chain Community Optimisation

    In one other article printed on In direction of Information Science, I share an analogous experiment targeted on the Provide Chain Community Design train.

    Instance of Community Design – (Picture by Samir Saci)

    The target right here is extra macro-level.

    We wish to decide where items are produced to serve markets on the lowest value in an environmentally pleasant manner.

    Exemple of situations – (Picture by Samir Saci)

    Whereas the algorithm differs, the strategy stays the identical.

    We strive a number of situations with parameters that favour completely different groups (finance, sustainability, logistics, manufacturing) to succeed in a consensus.

    Instance of outputs – (Image by Samir Saci)

    Like right here, Claude does an incredible job in synthesising the outcomes and offering data-driven suggestions.

    For extra particulars, you possibly can watch this video.

    About Me

    Let’s join on Linkedin and Twitter. I’m a Provide Chain Engineer who makes use of knowledge analytics to enhance logistics operations and cut back prices.

    For consulting or recommendation on analytics and sustainable provide chain transformation, be at liberty to contact me by way of Logigreen Consulting.

    If you’re fascinated with Information Analytics and Provide Chain, have a look at my web site.

    Samir Saci | Data Science & Productivity





    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Editor Times Featured
    • Website

    Related Posts

    A Practical Guide to Memory for Autonomous LLM Agents

    April 17, 2026

    You Don’t Need Many Labels to Learn

    April 17, 2026

    Beyond Prompting: Using Agent Skills in Data Science

    April 17, 2026

    6 Things I Learned Building LLMs From Scratch That No Tutorial Teaches You

    April 17, 2026

    Introduction to Deep Evidential Regression for Uncertainty Quantification

    April 17, 2026

    memweave: Zero-Infra AI Agent Memory with Markdown and SQLite — No Vector Database Required

    April 17, 2026

    Comments are closed.

    Editors Picks

    Canyon Spectral:ON CF 8 Electric Mountain Bike: Beginner-Friendly, Under $5K

    April 18, 2026

    US-sanctioned currency exchange says $15 million heist done by “unfriendly states”

    April 18, 2026

    This New Air Purifier Filter Can Remove Cannabis Smoke Odor, Just in Time for 4/20

    April 18, 2026

    Portable water filter provides safe drinking water from any source

    April 18, 2026
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    About Us
    About Us

    Welcome to Times Featured, an AI-driven entrepreneurship growth engine that is transforming the future of work, bridging the digital divide and encouraging younger community inclusion in the 4th Industrial Revolution, and nurturing new market leaders.

    Empowering the growth of profiles, leaders, entrepreneurs businesses, and startups on international landscape.

    Asia-Middle East-Europe-North America-Australia-Africa

    Facebook LinkedIn WhatsApp
    Featured Picks

    China plans rules to protect children and tackle suicide risks

    December 30, 2025

    a whistleblower alleges Google broke its ethics rules in 2024 to help an Israeli military contractor use AI to analyze drone surveillance video (Gerrit De Vynck/Washington Post)

    February 2, 2026

    I Tested Trade Ideas for 30 Days: Here’s what really happened

    August 7, 2025
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    Copyright © 2024 Timesfeatured.com IP Limited. All Rights.
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    • About us
    • Contact us

    Type above and press Enter to search. Press Esc to cancel.