A virtual MCP Community Event for AI Builders
LIVESTREAM
3:00 PM - 7:00 PM GMT
August 6, 2026

A virtual MCP Community Event for AI Builders

About the Event


The Model Context Protocol (MCP) is quickly becoming the standard for connecting AI assistants and agents to the tools, data, and systems they need to get real work done. As adoption accelerates across the AI ecosystem, developers are discovering new architectures, production patterns, and best practices for building MCP-powered applications.


Join us for a virtual community event featuring engineers, founders, DevRel leaders, and practitioners from MintMCP, VictoriaMetrics, Motorola Solutions, Melonfire, Arcade.dev, Sahaj Software, Optum, and Block as they share how they're building with MCP in production.


Through technical deep dives, live demos, security research, enterprise case studies, and architectural discussions, you'll learn directly from the people advancing the MCP ecosystem.


Whether you're building your first MCP server or operating AI systems at scale, you'll leave with practical implementation ideas, real-world lessons, and a clear view of where the protocol is headed.


What You'll Learn


  1. Enterprise lessons from dozens of real MCP deployments
  2. The biggest changes in the new MCP specification and how to prepare
  3. Building secure MCP servers and discovering vulnerabilities before deployment
  4. Governance frameworks for autonomous AI agents
  5. Bringing agentic developer experiences directly into the IDE
  6. Operating MCP with production observability stacks
  7. Coordinating multi-agent swarms using MCP, sandboxing, and shared filesystems
  8. Live demos, implementation patterns, and production best practices


Featured Speakers


Hear from experts including:


  1. Jiquan Ngiam - Co-Founder & CEO, MintMCP
  2. Alex Hancock - Block
  3. Diana Todea - Head of DevRel, VictoriaMetrics
  4. Vikram Vaswani - Developer Advocate, Melonfire
  5. Mateo Torres - Member of GTM Staff, Arcade.dev
  6. Adnan Vahora - Software Engineer, Motorola Solutions
  7. Saurabh Mishra - Lead DevOps Engineer, Optum
  8. Akash Sathish - Solution Consultant, Sahaj Software


This event is designed for AI engineers, platform engineers, software developers, open source contributors, and anyone building the next generation of interoperable AI systems using MCP.


Speakers

Alex Hancock
Software Engineer @ Block
Diana Todea
Head of DevRel @ VictoriaMetrics
Jiquan Ngiam
CEO and Co-Founder @ MintMCP
Vikram Vaswani
Developer Advocate @ Melonfire
Leo Walker
AI Engineer @ KaiCare.ai
Rahul Parundekar
Founder @ A.I. Hero, inc.
Mateo Torres
Member of GTM Staff @ Arcade.dev
Adnan Vahora
Software Engineer @ Motorola Solutions
Demetrios Brinkmann
Chief Happiness Engineer @ MLOps Community
Saurabh Mishra
Lead DevOps Engineer @ Optum
Akash Sathish
Solution Consultant @ Sahaj Software
Jiquan Ngiam
Co-Founder and CEO @ MintMCP
Cornelia Davis
Developer Advocate @ Temporal Technologies

Agenda

From3:00 PM
To3:10 PM
GMT
Tags:
Opening / Closing
Welcome & Opening

Kick off this virtual MCP Community Event for AI Builders with a welcome from the hosts. We'll introduce the event, walk through the agenda, and set the stage for a day of technical talks, live demos, and community discussions exploring the latest developments in the Model Context Protocol.

+ content:video.read_more_button
Speakers:
user's Avatar
user's Avatar
user's Avatar
From3:10 PM
To3:30 PM
GMT
Tags:
Presentation
What We Learned from Dozens of Enterprise MCP Deployments

Over the past year, we've worked with dozens of enterprise teams deploying MCP into production. While every environment is different, many of the same operational challenges showed up again and again.

We'll share the patterns we kept seeing across deployments: where teams got stuck, what architectural decisions aged well, what broke as adoption expanded, and the practices that consistently made deployments easier to operate.

We’ll walk through what we’ve learned about authentication, agent identity, tool management, observability, policy enforcement, and running MCP at enterprise scale. Instead of focusing on just one deployment, we’ll share the patterns we kept seeing across many real-world environments.

+ content:video.read_more_button
Speakers:
user's Avatar
From3:35 PM
To3:55 PM
GMT
Tags:
Presentation
MCP 728: What Changes, What Breaks, and What You Need to Do About It

The 728 spec is the largest change to MCP: the session handshake is gone, servers become formal OAuth 2.1 resource servers, extensions become first-class, and features like Sampling and Roots are deprecated. These changes start a 12-month migration clock. They also force strategic and tactical shifts. For example, how you re-architect auth is a tactical call everyone has to get right, and whether you run both versions or put a runtime in front is the strategic one that shapes the rest

+ content:video.read_more_button
Speakers:
user's Avatar
From4:00 PM
To4:20 PM
GMT
Tags:
Presentation
Responsible Autonomy: Building Governance Frameworks for AI Agents That Act in the Real World via MC

AI agents powered by the Model Context Protocol (MCP) can now read emails, update CRMs, execute code, move money, and trigger business workflows autonomously. This raises a critical question: who is accountable when an agent acts? This session goes beyond capability and into governance exploring how organizations can deploy agentic AI responsibly without sacrificing the speed and autonomy that makes it valuable. Through real-world case studies in finance, healthcare, legal, and enterprise IT, attendees will walk away with a practical framework for scoped permissions, human-in-the-loop design, audit trails, and policy guardrails for MCP-connected agents

+ content:video.read_more_button
Speakers:
user's Avatar
From4:25 PM
To4:45 PM
GMT
Tags:
Presentation
Before the Agent Calls: Source-Level Findings from 100 MCP Servers

Most MCP security work assumes the threat lives at runtime, like a malicious prompt, a compromised model. But the vulnerabilities are already sitting in server source code, shipped to npm, waiting.

I audited 100 of the most-installed TypeScript MCP servers at the AST level and found 445 real findings across 70 servers which carried at least one exploitable pattern: command injection from tool input, path traversal, SSRF, and tool-poisoning through dynamically assembled descriptions, the class no prompt filter catches.

This talk shows what those patterns look like in real shipped servers, why they survive review, and why LLM-based scanners miss them. I demo MCPeek, the open-source ts-morph scanner I built to find them: multi-pass taint tracking from tool inputs to dangerous sinks, mapped to the OWASP MCP Top 10, emitting SARIF into GitHub Code Scanning. Fully offline, no model, no cloud, no per-scan cost.

I'll also be honest about what static analysis cannot catch and where dynamic and runtime approaches genuinely win.

Link to MCPeek: https://github.com/iamakash-06/MCPeek NPM Package: https://www.npmjs.com/package/mcpeek

+ content:video.read_more_button
Speakers:
user's Avatar
From5:05 PM
To5:25 PM
GMT
Tags:
Presentation
Agentic DX: Bringing IDP into your IDE

Platform engineering faces a classic "Chicken Egg Problem" : platforms need adoption to become mature, but adoption requires onboarding that developers resist when deadlines are tight. We faced this exact hurdle with an Internal Developer Platform (IDP) serving over 4,000 monthly active users. Instead of forcing users to orchestrate between disconnected agents , we solved this by meeting developers where they already are. Using a "Bring Your Own Agent" strategy , we brought the IDP directly into the IDE. However, building a composable agent framework to support this revealed some hard truths. Relying on a flat agent mesh does not scale; it simply leads to "hallucinations snowballing". Furthermore, there is a hidden gap that nobody warns about: "Where MCP Ends A2A begins". Most agent failures don't happen inside protocols; they happen between them. In this session, we will unpack how to solve common agent loop development problems for dev teams. We will explore a robust Master Agent architecture and share a practical blueprint for maintaining "Agentic Context Hygiene".

+ content:video.read_more_button
Speakers:
user's Avatar
From5:30 PM
To5:50 PM
GMT
Tags:
Presentation
MCPs for Observability Stacks

We use MCP servers in production everyday. But how are we using them with a complex observability stack?

I'm my talk, I present not one but 2 MCP servers, which collaborate to provide accurate information for any practicioner working or deploying in production. I showcase with live demos, how to operate with cloud deployments, find out information on logs and metrics and then detect anomalies in the Observability.

How efficient can an engineer get with their troubleshooting? How much can we reduce alert fatigue in this setup?

Find out more in my talk and gain practical knowledge in building this setup one step at a time.

+ content:video.read_more_button
Speakers:
user's Avatar
From5:55 PM
To6:15 PM
GMT
Tags:
Presentation
The MCP Tasks Extension

Long-running work - batch jobs, multi-step agent tasks, anything that takes minutes instead of milliseconds — doesn't fit a synchronous request/response model.

This talk covers how the Model Context Protocol solves that with Tasks: why it exists, how it works, and what changed in the 2026-07-28 update. Includes a live demo.

+ content:video.read_more_button
Speakers:
user's Avatar
From6:20 PM
To6:40 PM
GMT
Tags:
Presentation
MCP Release Overview :Stateless and the big changes in the new spec
Speakers:
user's Avatar
From6:45 PM
To7:05 PM
GMT
Tags:
Presentation
Building Better AI Experiences with MCP

Cornelia Davis will share practical insights and perspectives on building with MCP.

+ content:video.read_more_button
Speakers:
user's Avatar
From7:10 PM
To7:15 PM
GMT
Tags:
Opening / Closing
Closing Remarks

A brief wrap-up of the event, key takeaways, and what's next for the MCP community.

+ content:video.read_more_button
Speakers:
user's Avatar
Event has finished
3:00 PM - 7:00 PM GMT
August 6, 2026
Online
Organized by
user's Avatar
Agentic AI Foundation
Event has finished
3:00 PM - 7:00 PM GMT
August 6, 2026
Online
Organized by
user's Avatar
Agentic AI Foundation