---
title: "MCP Before MCP"
newsletter: "MLOps Community"
date: 2026-05-14
source: https://aaif.live/newsletters/mlopscommunity/2026-05-14-mcp-before-mcp
---

# MCP Before MCP

*Plus… latency-aware recommendations, LLM-as-judge reliability, replayable agent traces, and shared workspaces for coding agents*

*MLOps Community — Agentic AI Foundation, 2026-05-14*

Anthropic's Mythos sends VCs rushing to plug security market holes [https://www.reuters.com/business/finance/anthropics-mythos-sends-us-banks-rushing-plug-cyber-holes-2026-05-12/].

## U and I need to chat

Flights, refunds, group trips, price comparisons, dates, filters, payment, identity checks - the moment the task gets real, pure chat starts turning into a clumsy UI with extra steps.

What wins in production: Open chat or structured UI?

[OPEN CHAT](https://gatewaze.mlops.community/offer/surveys/?sid=yesno&question=Flights%2C+refunds%2C+group+trips%2C+price+comparisons%2C+dates%2C+filters%2C+payment%2C+identity+checks+-+the+moment+the+task+gets+real%2C+pure+chat+starts+turning+into+a+clumsy+UI+with+extra+steps.What+wins+in+production%3A+Open+chat+or+structured+UI%3F&y=OPEN+CHAT&n=STRUCTURED+UI&oneclick=true&accept=true)

[STRUCTURED UI](https://gatewaze.mlops.community/offer/surveys/?sid=yesno&question=Flights%2C+refunds%2C+group+trips%2C+price+comparisons%2C+dates%2C+filters%2C+payment%2C+identity+checks+-+the+moment+the+task+gets+real%2C+pure+chat+starts+turning+into+a+clumsy+UI+with+extra+steps.What+wins+in+production%3A+Open+chat+or+structured+UI%3F&y=OPEN+CHAT&n=STRUCTURED+UI&oneclick=true&accept=true)

## Knowledge Cap Gap

You've got the knowledge to know it's not the models capping agents.

## Vector Space Day SF: search, agents, and edge AI

On June 11, Qdrant is bringing Vector Space Day to San Francisco for a full day on production-grade AI infrastructure.

The day covers three areas where vector search is becoming more important:

 * search and retrieval, including multimodal embeddings, video search, retrieval evals, and production search architecture

 * agents and memory, including context engineering, scalable memory, agentic evals, and memory architectures

 * edge and robotics AI, including vector search on robots, cameras, edge hardware, and distributed or air-gapped deployments

Speakers include Qdrant, LlamaIndex, Mem0, Arize AI, TwelveLabs, Neo4j, Qualcomm, AWS, Google DeepMind, and more.

Register with code MLOPS-FREE for a free pass (limited availability)

[Register with code MLOPS-FREE for a free pass (limited availability)](https://qdrant.tech/vector-space-day-sf-26/)

[https://qdrant.tech/vector-space-day-sf-26/](https://qdrant.tech/vector-space-day-sf-26/)

## A shared workspace for coding agents

Agor is an open-source workspace for teams running coding agents across the same codebase. It brings Claude Code, Codex, Gemini, OpenCode, Copilot, prompts, terminals, dev environments, PRs, and Git worktrees into one shared surface, so agent work is easier to track once it starts spreading across branches, people, and review flows.

The important choice is the worktree model. Agor treats each piece of agent work as its own isolated unit, with the branch, environment, session history, and review path kept together. That makes sense for teams doing parallel agent-assisted development, where one person might spin up several attempts at the same task, another person might review the output, and someone else might need to pick up the session later without guessing which terminal, prompt, or branch produced the change.

That moves the problem away from “can an agent write code?” and toward a more practical infrastructure question: where does agent work live while it is being created, tested, compared, reviewed, and either merged or discarded?

Agor’s answer is to make the workspace itself the coordination layer. Sessions can be organized visually, work can be grouped by repo or task, and the surrounding context does not vanish into a private terminal scrollback. The repo also includes an MCP server, which makes the workspace programmable from agent sessions rather than only controlled by the human using the UI.

That is the more interesting angle for agent infrastructure. A lot of coding-agent tooling still assumes a fairly personal workflow: one developer, one agent, one branch, one editor. Agor is aimed at the messier team version, where agent runs need ownership, visibility, handoff, and review. The agent output is only part of the system. The rest is state management: branches, environments, prompts, files, session history, comments, PRs, and the path from experiment to reviewed code.

It’s early, and some of the edges show. The discussion around viewing agent-generated code before creating a PR is a good example. Teams want lightweight ways to inspect work inside Agor, but the project is also trying not to become a full IDE. That tension is worth noting because it’s probably the line a lot of agent workspaces will need to walk: enough surface area to coordinate and review work, without rebuilding every developer tool around the agent.

The stronger signal is that Agor is treating coding agents as shared team infrastructure, not just personal productivity tools. As agent-assisted coding gets more common, the missing layer may be less about another model interface and more about the operating surface around the work: how it branches, how it is tracked, who can see it, who can take it over, and how it reaches review without losing the context that produced it.

Agor repo [https://github.com/preset-io/agor]: open-source shared workspace for coding agents

## Building MCP Before MCP Existed: Inside Despegar's Sofia Agent

An AI travel agent sounds simple until it starts touching real bookings, support flows, WhatsApp chats, and airline edge cases.

 * Despegar split Sofia into a central orchestration layer, Chappie, with specialist agents for flights, hotels, activities, cars, support, and trip planning.

 * The team built its own MCP-like connection layer before MCP was available, then added MCP later for newer integrations rather than rewriting everything.

 * They still rely on orchestration because new tools can hijack prompts when routing is too loose.

The interesting bit is how much of production agent design comes down to keeping the model pointed at the right job.

[https://podcasts.apple.com/us/podcast/building-mcp-before-mcp-existed-inside-despegars-sofia/id1505372978?i=1000766793900](https://podcasts.apple.com/us/podcast/building-mcp-before-mcp-existed-inside-despegars-sofia/id1505372978?i=1000766793900)

[https://home.mlops.community/home/videos/building-mcp-before-mcp-existed-inside-despegars-sofia-agent](https://home.mlops.community/home/videos/building-mcp-before-mcp-existed-inside-despegars-sofia-agent)

[https://open.spotify.com/episode/2FQ8p3LQPlZudR1hivtjsD?si=1cb055c45fd0427a](https://open.spotify.com/episode/2FQ8p3LQPlZudR1hivtjsD?si=1cb055c45fd0427a)

## The Latency Goldilocks Zone Explained

Food recommendations get weird when the system has to suggest what you might like next, not just what you already buy.

 * The team uses user history, price sensitivity, location, restaurant fit, and item profiles to decide when to exploit known preferences and when to test something new.

 * Conversational ordering changes the search problem, especially when a user asks for constraints that filters handle badly, like delivery time, budget, dietary needs, and taste.

 * Latency is treated as both an engineering problem and a UX problem, with different tradeoffs for app, WhatsApp, and voice.

The hard part is making the recommendation feel obvious after the system has done a lot of hidden work.

[https://podcasts.apple.com/gb/podcast/the-latency-goldilocks-zone-explained/id1505372978?i=1000767406297](https://podcasts.apple.com/gb/podcast/the-latency-goldilocks-zone-explained/id1505372978?i=1000767406297)

[https://home.mlops.community/home/videos/the-latency-goldilocks-zone-explained](https://home.mlops.community/home/videos/the-latency-goldilocks-zone-explained)

[https://open.spotify.com/episode/4sQc9H3tZxQypwdY5Cimh0?si=7111W_kTQy-1JQeNf-0chw](https://open.spotify.com/episode/4sQc9H3tZxQypwdY5Cimh0?si=7111W_kTQy-1JQeNf-0chw)

## IN PERSON EVENTS

* San Francisco [https://luma.com/p8d635rz] - May 15

 * NYC [https://luma.com/meuys2hg] - May 20

 * Stockholm [https://luma.com/f7o4krel] - May 26

 * Paris [https://luma.com/a2swgs9x] - May 27

 * San Francisco [https://luma.com/ou5uq4vi] - May 27

 * London [https://luma.com/9k4ohvyj] - May 28

 * NYC [https://luma.com/54zz4k5u] - May 28

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

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

## VIRTUAL EVENTS

* Coding Agents Lunch & Learn [https://home.mlops.community/home/events/coding-agents-lunch-and-learn-session-11-fvbr283db0?agenda_day=6a021f7b3199d3fae1c2c607&agenda_track=6a021f7b3199d3fae1c2c61e&agenda_stage=6a021f7b3199d3fae1c2c60d&agenda_filter_view=stage&agenda_view=list] - May 15

 * Roundtable: Architecting Modern AI Systems [https://home.mlops.community/home/events/architecting-modern-ai-systems-platforms-agents-and-integration-tg5b4fngqb?agenda_day=69ea4c63bdbee16b0254d5e2&agenda_track=69ea4c64bdbee16b0254d618&agenda_stage=69ea4c63bdbee16b0254d5e6&agenda_filter_view=stage&agenda_view=list] - May 27

## Pilot, grounded

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

---
Source: https://aaif.live/newsletters/mlopscommunity/2026-05-14-mcp-before-mcp
