---
title: "Agents Need Traffic Control"
newsletter: "MLOps Community"
date: 2026-06-04
source: https://aaif.live/newsletters/mlopscommunity/2026-06-04-agents-need-traffic-control
---

# Agents Need Traffic Control

*MLOps Community — Agentic AI Foundation, 2026-06-04*

Agents, quantum, and chips are in the news, but it's not the new James Bond announcement [https://www.reuters.com/business/microsoft-reveals-new-quantum-chip-made-with-ai-says-it-will-have-systems-by-2026-06-02/].

## Agents: License revoked?

The future of AI apps may look less like agents deciding everything, and more like boring pipelines with good boundaries.

Which do you trust more: Agents or Workflows?

[AGENTS](https://gatewaze.mlops.community/offer/surveys/?sid=yesno&question=The+future+of+AI+apps+may+look+less+like+agents+deciding+everything%2C+and+more+like+boring+pipelines+with+good+boundaries.Which+do+you+trust+more%3A+Agents+or+Workflows%3F&y=AGENTS&n=WORKFLOWS&oneclick=true&accept=true)

[WORKFLOWS](https://gatewaze.mlops.community/offer/surveys/?sid=yesno&question=The+future+of+AI+apps+may+look+less+like+agents+deciding+everything%2C+and+more+like+boring+pipelines+with+good+boundaries.Which+do+you+trust+more%3A+Agents+or+Workflows%3F&y=AGENTS&n=WORKFLOWS&oneclick=true&accept=true)

## Don’t Make Yourself Scarce

No need to review the results of last week's hot take, you were clear on what’s scarcer.

## Building Vision Data Agents with Tools, Skills, and MCP

Most agentic workflows for computer vision tasks are pieced together with custom scripts. One to import your data, another to analyze your labels, another to evaluate detections. It works, but it doesn't scale.

On June 17th, at 9 AM PST, we’ll walk through how to build agents that can operate on your datasets: tagging samples, computing embeddings, running evaluations, and surfacing results — all through a structured tool interface using MCP and Skills.

You'll come away with a working mental model for how to wire this up in your own stack.

What's covered:

 * How Skills and MCP bridge the gap between an LLM and real workflows: connecting datasets, embeddings, evaluations, and curation pipelines.

 * Automating common CV tasks like duplicate detection, dataset QA, model evaluation, and annotation.

 * What breaks in real-world agent systems, and what we learned building them.

 * Evaluating multi-step agents with traces, rubrics, and regression testing.

Register for the Webinar

[Register for the Webinar](https://voxel51.com/events/how-to-build-vision-data-agents-with-tools-skills-and-mcp-june-17-2026?utm_source=sponsored_email&utm_medium=sponsorship&utm_campaign=MLOps_Newsletter&utm_content=Data_Agents_Webinar)

[https://voxel51.com/events/how-to-build-vision-data-agents-with-tools-skills-and-mcp-june-17-2026?utm_source=sponsored_email&utm_medium=sponsorship&utm_campaign=MLOps_Newsletter&utm_content=Data_Agents_Webinar](https://voxel51.com/events/how-to-build-vision-data-agents-with-tools-skills-and-mcp-june-17-2026?utm_source=sponsored_email&utm_medium=sponsorship&utm_campaign=MLOps_Newsletter&utm_content=Data_Agents_Webinar)

## MCP moves toward production ops

The next MCP specification release candidate is out, and the headline change is not a new tool or another agent demo. It is operational plumbing.

MCP is moving toward a stateless protocol core. In the previous Streamable HTTP version, clients established a session first, then carried an Mcp-Session-Id into later requests. That made horizontal deployments care about sticky sessions, shared session stores, and gateway behavior. In the new release candidate, a tool call can be a self-contained request that any server instance can handle. Protocol version, client identity, and client capabilities travel with the request, while headers such as Mcp-Method and Mcp-Name make routing easier for load balancers, gateways, and rate limiters.

That does not mean agent workflows lose state. It means state has to become explicit. A server can return a handle, such as a repository, browser session, task, or basket ID, and the model can pass that handle back in later tool calls. That is better for logging, orchestration, and debugging, but it also puts more responsibility on tool authors to scope, validate, and expire those handles properly.

There are other production-minded changes too. MCP Apps let servers ship interactive HTML interfaces that hosts render in sandboxed iframes, while Tasks moves long-running work into an official extension with tasks/get, tasks/update, and tasks/cancel. Extensions now get a more formal process, with negotiated capabilities and independent versioning, rather than every new capability needing to live in the core spec.

The security and auth piece is worth calling out. The release candidate tightens OAuth and OpenID Connect behavior for the common MCP pattern where one client talks to many servers. It clarifies issuer validation, client registration, credential binding, refresh tokens, and step-up scope handling, where a client requests scopes on demand as tools need them instead of over-permissioning up front. Den Delimarsky has a short post [https://www.linkedin.com/posts/dendeli_mcp-modelcontextprotocol-ai-ugcPost-7466004252285640704-u__1/] on that specific change. This matters because agents are increasingly being connected to private data, company systems, paid services, and user-specific workflows.

The migration work is real. Roots, Sampling, and Logging are now deprecated under a formal feature lifecycle policy, though they still work in this release and any removal needs a separate SEP. Full JSON Schema 2020-12 support also gives tool schemas more expressive power, which is useful, but implementers need to watch validation cost and external references.

This RC moves MCP closer to something ops teams can run using familiar infrastructure, but it is still an RC with breaking changes. Angie Jones at AAIF has a good practical breakdown of what to test first. Two of her checks are worth doing now: confirm your requests can move across server instances without losing context, and audit every place your server remembers something between tool calls so it has an explicit handle the client can see and pass back.

Links:

 * AAIF practical breakdown: https://aaif.io/blog/mcp-is-growing-up/

 * Official MCP release candidate post: https://blog.modelcontextprotocol.io/posts/2026-07-28-release-candidate/

 * Official changelog: https://modelcontextprotocol.io/specification/draft/changelog

 * MCP.Directory [http://MCP.Directory] walkthrough: https://mcp.directory/blog/mcp-2026-07-28-release-candidate
   
   


If you do this kind of work on MCP, Goose, or AGENTS.md [http://AGENTS.md], the AAIF Ambassador program is open until June 12.

Ten spots, one project-based contribution a month (tutorial, talk, video, blog post, or livestream), with travel support, roadmap access, and regular briefings with project maintainers.

Apply or read more [https://aaif.io/ambassadors/]

## AI Is Fast. AI Projects Are Slow. Let's Fix That.

AI pipelines fail in boring places first. This conversation looks at what happens when coding agents, LLMs, OCR tools, parsers, vector stores, and deployment plumbing all have to work reliably in production.

 * The main bottleneck is moving from code generation to architecture, tool selection, consistency, and quality control across changing agent stacks.

 * Rocket Ride standardizes pipelines through nodes, lanes, traces, and reusable patterns, so teams can compare agents, models, and tools without rewriting everything.

 * Observability matters once one bad OCR step, async bug, or expensive model call can break quality, latency, or cost.

The practical point is that production AI work needs less guessing and more control over what each part of the pipeline is doing.

[https://podcasts.apple.com/gb/podcast/ai-is-fast-ai-projects-are-slow-lets-fix-that/id1505372978?i=1000770209073](https://podcasts.apple.com/gb/podcast/ai-is-fast-ai-projects-are-slow-lets-fix-that/id1505372978?i=1000770209073)

[https://home.mlops.community/home/videos/ai-is-fast-ai-projects-are-slow-lets-fix-that](https://home.mlops.community/home/videos/ai-is-fast-ai-projects-are-slow-lets-fix-that)

[https://open.spotify.com/episode/6Bq7CRyDVrWJNyf2wDeYig?si=61fa35700f63457c](https://open.spotify.com/episode/6Bq7CRyDVrWJNyf2wDeYig?si=61fa35700f63457c)

## Architecting Modern AI Systems: Platforms, Agents, and Integration

A mental health hackathon exposed the gap between an impressive AI demo and a system you’d trust when the stakes are real. The discussion moves from model choice to production controls, evaluation, and agent failure modes.

 * Open-source models can cut token costs and give teams more control over data, versioning, and output behavior.

 * Production quality still depends on evaluation, human review, and user feedback.

 * Agent governance needs telemetry, tool restrictions, sandboxing, and clear limits on irreversible actions.

The strongest thread is practical control: cheaper models help, but governance decides whether agents can be trusted.

[https://podcasts.apple.com/gb/podcast/architecting-modern-ai-systems-platforms-agents-and/id1505372978?i=1000770035155](https://podcasts.apple.com/gb/podcast/architecting-modern-ai-systems-platforms-agents-and/id1505372978?i=1000770035155)

[https://home.mlops.community/home/videos/architecting-modern-ai-systems-platforms-agents-and-integration](https://home.mlops.community/home/videos/architecting-modern-ai-systems-platforms-agents-and-integration)

[https://open.spotify.com/episode/5AZR5Z5HG1ihS7jojJfq9b?si=4b28bfbf6c684795](https://open.spotify.com/episode/5AZR5Z5HG1ihS7jojJfq9b?si=4b28bfbf6c684795)

## RePPIT: A Framework to Ship Production Code 2-3X Faster

AI coding can look great right up until it meets a real codebase. This piece explains RePPIT, a five-step framework for getting coding agents to produce production-ready work without relying on one-shot prompting.

 * The model first researches the codebase, documenting architecture, dependencies, and file structure before proposing any changes.

 * It then compares two implementation options, plans the chosen route, and limits guessing before code is written.

 * Testing includes review by a separate model or cleared context, so the same instance does not mark its own homework.

For production code, the biggest speed gain may come before the first line is written.

[Read the blog](https://mlops.community/blog/reppit-a-framework-to-ship-production-code-2-3x-faster)

## Making Coding Agent Work Multiplayer

What comes after the IDE? Max Beauchemin walked through Agor at last week's Coding Agents Lunch & Learn - a multiplayer canvas for orchestrating coding agents that pulls work out of private terminals and onto a shared visual surface.

Read the short PDF write-up here [https://go.mlops.community/L&LSession13].

The next Coding Agents Lunch & Learn is tomorrow, June 5, at 5:00 PM BST / 4:00 PM UTC. Session 14 covers building and measuring a GTM agent with Goose X Code Mode, the Agent Voyager Project for agent observability, and techniques for running long autonomous agent sessions reliably.

Join the next session here [https://home.mlops.community/home/events/coding-agents-lunch-and-learn-session-14-bwvbsbxsic?agenda_day=6a1d916b2d5b04de1fe711f7&agenda_track=6a1d916c2d5b04de1fe7120e&agenda_stage=6a1d916b2d5b04de1fe711fd&agenda_filter_view=stage&agenda_view=list].

## IN PERSON EVENTS

* London [https://luma.com/9k4ohvyj] - June 4

 * Bengaluru [https://luma.com/8zfqurrw] - June 6

 * San Francisco [https://luma.com/sf-ohb3] - June 10

 * Amsterdam [https://luma.com/6i8pf89q] - June 24

 * NYC [https://luma.com/nyc-i97h] - June 24

## VIRTUAL EVENTS

* Coding Agents Lunch & Learn Session [https://home.mlops.community/home/events/coding-agents-lunch-and-learn-session-14-bwvbsbxsic?agenda_day=6a1d916b2d5b04de1fe711f7&agenda_track=6a1d916c2d5b04de1fe7120e&agenda_stage=6a1d916b2d5b04de1fe711fd&agenda_filter_view=stage&agenda_view=list] - June 5

 * Building Real-Time ML Systems with Zipline + Chronon [https://home.mlops.community/home/events/building-real-time-ml-systems-with-zipline-chronon-2l3sed0h60?agenda_day=6a0db94f3545e18ad39e9a93&agenda_track=6a0db9503545e18ad39e9ac8&agenda_stage=6a0db94f3545e18ad39e9a97&agenda_filter_view=stage&agenda_view=list] - June 10

 * Reading Group: Securing the Agent: Vendor-Neutral, Multitenant Enterprise Retrieval and Tool Use [https://home.mlops.community/home/events/securing-the-agent-vendor-neutral-multitenant-enterprise-retrieval-and-tool-use-97o6pxu17x?agenda_day=6a0ada3a99953505591c10a2&agenda_track=6a0ada3b99953505591c10d7&agenda_stage=6a0ada3a99953505591c10a6&agenda_filter_view=stage&agenda_view=list] - June 11

## This Is Fine

[https://forms.gle/8EDvXGizxyFVKfwy8](https://forms.gle/8EDvXGizxyFVKfwy8)

---
Source: https://aaif.live/newsletters/mlopscommunity/2026-06-04-agents-need-traffic-control
