Mumbai Tech Week 2026: My Key Takeaways from Two Days at BKC

Mumbai Tech Week 2026 TrackWizz

Mumbai Tech Week 2025 was a whirlwind of innovation, announcements, and conversations about where AI is headed — both globally and right here in India. Held at the Bandra Kurla Complex (BKC), the event brought together global tech giants, Indian startups, government leaders, and builders under one roof. Here’s everything I took away from two packed days.


Day 1 Highlights

Opening: Chief Minister Devendra Fadnavis sets the vision

The event kicked off with an address by Maharashtra’s Chief Minister Devendra Fadnavis, who laid out an ambitious vision for Maharashtra as India’s AI capital. He spoke about the infrastructure being built — roads, connectivity, and, most significantly, data centers — positioning Mumbai’s status as a financial hub as the launchpad to make the state the country’s AI powerhouse.


Anthropic: The Future of AI Agents

The Anthropic session was one of the most technically rich of the day. Key topics included:

  • Self-hosted Sandboxes — giving developers more control over execution environments
  • MCP Tunnel — enabling secure, seamless connections between Claude and external systems
  • Multi-Agent Orchestration — coordinating multiple AI agents working in parallel
  • Routine — structured, repeatable agent workflows

A major highlight: Claude Opus 4.8 was announced as being 4x better at coding than its predecessor — a significant leap for developers building with AI.

Perhaps the most fascinating update was around Claude’s memory architecture. Claude agents can now:

  • Learn from past conversations (session memory)
  • Use a persistent memory store across sessions
  • Benefit from a process described as “dreaming” — where the agent consolidates and refines what it has learned

This is a significant step toward genuinely persistent, contextually aware AI agents.


Google DeepMind: Science, Speech, and the Planet

Google DeepMind’s session covered an impressive range of applications:

  • Project Vaani — a massive open-source initiative to collect spontaneous, image-prompted speech data from all 773 districts of India. A landmark step for building truly Indian AI.
  • Gemini Live — real-time, multimodal AI interaction
  • AlphaFold — the neural network that has revolutionized protein structure prediction, with implications for drug discovery and biology
  • Nuclear Fusion AI — AI being applied to model and accelerate clean energy research
  • Weather Forecasting — a model capable of predicting weather with greater accuracy than traditional methods

Razorpay: Agent Studio

Razorpay introduced Agent Studio, where AI acts as a real person in customer conversations — handling queries, resolving issues, and engaging with customers in a way that feels genuinely human. The demo showed how far conversational AI has come in mimicking real customer support interactions.


MakeMyTrip: Meet Myra

MakeMyTrip showcased Myra, their AI travel assistant. You simply chat or talk to Myra, share your holiday preferences, and she takes care of the research and booking — flights, hotels, itineraries. A real glimpse at agentic AI in consumer applications.


Google Cloud: Building the Future of AI

The Google Cloud session covered:

  • Autonomous Agents — think big, start imagining fully autonomous workflows
  • Gemini Enterprise Agent Platform — bringing Gemini into enterprise workflows
  • Gen Media for Indian Creators — tools for creating culturally relevant AI-generated media
  • Google Cloud AI Stack — an end-to-end view of their AI infrastructure offerings
  • Gemini Omni Flash — a model that can generate anything from any input type, starting with video
  • Live Avatar Immersive Training — AI avatars for training and education

Day 2 Highlights

Government of Maharashtra: The 7 Pillars of AI

Day 2 opened with the Maharashtra Electronics, IT & AI Department presenting their strategic framework — 7 pillars designed to make Maharashtra a leader in responsible, homegrown AI:

  1. AI Infrastructure Development — state-wide AI enablement
  2. Local Datasets and Platforms — fostering AI innovation and interoperability using India’s own data
  3. Local Talent Development and Skilling — building a future-ready workforce
  4. Startup-First Adoption and Financing — driving public sector innovation through startups
  5. Applied AI Accelerator — moving AI pilots to full-scale deployments
  6. Centre of Excellence (CoE) — research and applied AI innovation hubs
  7. Ethical AI and Compliance Framework — responsible AI deployment guidelines

The session also outlined the Maharashtra Advantage — a set of investment incentives designed to attract global AI companies to the state.

Masterclasses- The Session that I Attended

The Future of AI: From Research to Reality (Meta AI) 

This session dived into three key technologies:

  • SAM3 — the next generation of Meta’s Segment Anything Model
  • Omilingual — multilingual AI capabilities
  • PyTorch — advances in the open-source deep learning framework

Beyond Context Engineering: The Case for Domain-Specific LLMs 

This was one of my personal highlights. The session challenged the popular assumption that bigger models are always better — the “Bigger Model Fallacy”.

Key topics:

  • FiMI — Financial Model of India. building domain-specific models
  • AI Model Assistance for Chat — practical approaches to deploying LLMs in real workflows
  • The 4 Stages of SLM Fine-Tuning:
    1. Base model selection
    2. Continuous pre-training
    3. Supervised fine-tuning
    4. Alignment

The core argument: for many enterprise applications, a well-tuned small language model (SLM) outperforms a generic large model. Context engineering alone isn’t enough — domain specificity matters.


Build with Codex

A deep dive into OpenAI’s Codex framework:

CODEX = Model + Harness + Surfaces

Key features:

  1. Plugin — a combination of Skills, MCP, and APP
  2. Automation — task execution without manual intervention
  3. Sub-Agents — nested agent workflows for complex tasks
  4. Worktrees — parallel copies of your codebase, enabling multiple agents to work simultaneously on different branches

The session also covered the Codex Security Plugin — safeguards for keeping agentic coding within defined boundaries.


Agentic AI for Enterprises: Building Secure, Production-Ready Systems

This session framed the shift from prompt engineering to a full AI Operating System mindset:

  1. Build your Claude OS
  2. Replace prompts with files
  3. Let Claude think for you
  4. Add tools
  5. Automate everything

It introduced the concept of AI-DLC (AI Development Lifecycle) — treating AI deployment with the same discipline as software engineering.


Hiring Engineers in the AI Era: The New Interview Loop (Day 2)

A provocative and practical session on how engineering hiring must change. Instead of testing syntax, evaluate:

  1. AI fluency — how well a candidate works with AI tools
  2. Judgement and taste — knowing when AI output is good or needs correction
  3. Code review at speed — reviewing AI-generated code efficiently
  4. Systems and cost — understanding infrastructure and cost implications of AI
  5. Debugging and verification — catching what AI gets wrong

The Engineering Contract: What Every Engineering Team Needs from Agentic Systems (My favourite of the event)

This was the masterclass I’d recommend to every engineering leader. It introduced a powerful mental model: instead of vague instructions, define explicit contracts between your team and your AI agents.

Old Contract vs New Contract — the shift from informal prompting to structured, documented agreements.

The five contract types:

1. System Contract (Agent.md)

  • Custom commands
  • Explicit boundaries
  • Things the agent must never touch
  • Specific code style requirements

Key insight: “Contracts are not essays.” Longer files are token-expensive, counterintuitively worse in performance, and create bloat. Keep them tight.

2. Skill Contract Enables the AI to:

  • Gain domain knowledge
  • Access specific tools
  • Understand success criteria
  • Operate within defined constraints

3. Memory Contract Defines:

  • What gets remembered
  • Where it lives
  • Who writes it
  • How long it persists
  • What gets forgotten

The context ceiling problem was also highlighted — long-running agents inevitably hit a context limit, and Memory Contracts help manage what survives that ceiling.

4. Review Contract — criteria for when and how agent output is reviewed

5. Escalation Contract — when the agent must stop and ask a human

The session closed with a look at multi-tasking and Worktrees (/multitask) and the emerging Marketplace and Plugins for Cursor.

Expo Floor: Standout Stalls

Beyond the sessions, the exhibition area had some genuinely interesting companies:

  • CockroachDB — scalable database with AI integration
  • LoveLocal — fresh fruits and vegetables delivered from local vendors, with a new AI feature that checks the freshness of produce (launched at Mumbai Tech Week!)
  • NPCI — enabling digital payments infrastructure for India
  • Neysa Velocis — build, operate, and scale AI with speed, security, and real ROI
  • Rayban for Meta AI — AI-powered glasses that have evolved from video recording to image capture to full Meta AI conversation and music
  • Cognitive — tools for assessing and improving cognitive thinking
  • Indian Bond — simplifying bond investing for retail investors
  • Zoom Cloud — enterprise communication and collaboration
  • Simplistmart — deploy and scale LLMs with ease
  • UpGrad — courses and certifications for the AI era

TrackWizz at Mumbai Tech Week

A personal note of gratitude — I was able to attend this event because of TrackWizz. A big thank you to the team at TrackWizz for giving me this opportunity to represent the company and experience two incredible days of learning firsthand.

And it wasn’t just attendance — our team also had a product showcase on a separate stage, which was a great moment to put TrackWizz in front of a highly engaged, tech-savvy audience. Proud of the team for making it happen.

Final Thoughts

Mumbai Tech Week 2026 was a clear signal: India is not just consuming AI — it’s building it, regulating it, and shaping its direction. From Maharashtra’s government laying out a 7-pillar AI strategy to startups using AI to check whether your mangoes are fresh, the breadth of what’s happening here is remarkable.

The conversations around agent engineering contractsdomain-specific fine-tuning, and AI hiring practices were the kind of practically grounded content that you can take back and apply the very next day.

Now comes the more important part — exploring, learning, applying, and practising all of these takeaways. The real value of attending an event like this isn’t in the notes you take, it’s in the work you do after. The goal going forward is to bring these learnings into our day-to-day work, identify opportunities to innovate, and meaningfully integrate AI into what we build at TrackWizz.

If you’re in tech and you haven’t been to Mumbai Tech Week — put it on your calendar for next year.


Attended Mumbai Tech Week 2026 at BKC, Mumbai. All views and notes are my own.