More MLOps.community episodes

What an Anthropic Engineer Thinks About MCP thumbnail

What an Anthropic Engineer Thinks About MCP

Published 27 Jul 2026

Duration: 00:52:27

"SDKs now see hundreds of millions of downloads annually, with a focus on minimal, extensible designs and a major MCP update shifting to stateless protocols for scalability, balancing simplicity with complexity while prioritizing stability and future-proofing."

Episode Description

In this episode, we're joined by David Soria Parra, Engineering Lead at Anthropic and one of the core maintainers of the Model Context Protocol (MCP),...

Overview

The podcast discusses the evolution and maturity of SDKs and the Multi-Call Protocol (MCP), highlighting a major update that transitions MCP from a stateful to a stateless protocol to improve scalability. This change, inspired by challenges faced at hyperscale companies like Microsoft, Google, and Anthropic, addresses issues such as load balancing, state synchronization, and latency by eliminating the need for session persistence. To maintain functionality while embracing statelessness, the protocol now uses multi-round-trip mechanisms and ensures that all context is transmitted with each request, enabling better caching and distribution across servers.

The discussion also covers design philosophies such as minimal viable solutions, progressive disclosure, and the trade-offs between core stability and extensibility. Emphasis is placed on reducing context bloat through techniques like tool search and programmatic tool calling, as seen in implementations by Cloudflare and Anthropic. The protocol's design prioritizes composability, universality, and long-term stability for core features, while allowing innovations to mature as extensions before potential integration. Observability, tracing via Open Telemetry, and future challenges around compliance and governance are also explored, with a vision for a stable core protocol supported by a flexible extension system shaped by community feedback.

What If

  • What if you built a stateless AI tool server using the new MCP spec today?

    • Move: Refactor your existing agent API to eliminate session persistence, encode all context in requests/responses, and use the latest TypeScript/Python SDK to implement a stateless endpoint.
    • Why Now?: The new MCP release (v2) enables stateless operation with multi-round-trip workflows, and SDKs now support it with minimal code changes - making migration faster than ever.
    • Expected Upside: Scale to millions of concurrent users without load-balancer affinity or Redis-backed sessions, reducing infra cost and complexity by up to 40% while improving latency.
  • What if you shipped a micro-SDK for a niche use case as an extension before pushing it to core?

    • Move: Identify a high-friction workflow in your product (e.g., financial compliance or real-time rendering), build a standalone extension using MCP's extensibility model, and publish it with usage telemetry.
    • Why Now?: The ecosystem now supports mature SDKs and extension patterns that allow fast iteration without destabilizing core protocol adoption.
    • Expected Upside: Achieve product-market fit 2 - 3x faster by validating demand before contributing to core, avoiding wasted effort on prematurely generalized features.
  • What if you eliminated context bloat in your agent app by implementing tool search and code-gen today?

    • Move: Replace full tool spec injection with a searchable tool index and allow models to generate executable scripts (e.g., JS blocks) instead of single tool calls - just like Cloudflare and Anthropic.
    • Why Now?: Models now handle dynamic tool discovery robustly, and token costs remain high enough that naive context usage cripples performance at scale.
    • Expected Upside: Reduce average request token count by 50 - 70%, lowering costs, increasing throughput, and enabling longer-running agent tasks without hitting context limits.

Takeaway

  • Upgrade to the latest MCP SDKs (TypeScript, Python, C#) to leverage the stateless protocol update with minimal code changes and ensure future compatibility.
  • Design new features as extensions rather than modifying the core protocol to enable faster iteration and reduce the risk of breaking changes.
  • Implement tool search and programmatic tool calling in client-side logic to reduce context bloat and improve token efficiency in model interactions.
  • Integrate Open Telemetry into MCP server implementations for better observability and tracing across multi-server agent workflows.
  • Submit feedback and use cases to the open-source project to influence the development of extensions and help shape next-phase protocol standards.

Recent Episodes of MLOps.community

20 Jul 2026 The Creator of FastMCP Explains the Future of MCP

"Fast MCP streamlined the Multi-Chat Protocol, dominating the market with simplicity and efficiency, while evolving to support interactive UI apps, Python-based token-efficient interfaces, and addressing security and scalability challenges, with AI tools enhancing personal and professional workflows."

13 Jul 2026 What Happens When Every Developer Has 20 AI Agents?

"Modern software development faces bottlenecks from limited human resources and AI-driven shifts, transforming productivity, SaaS models, and workflows while straining infrastructure and open-source ecosystems."

6 Jul 2026 AI Agents Should Be Treated Like Hackers

Integrating AI agents with enterprise systems via APIs presents security risks from untrusted access, requiring solutions like the Multi-Cloud Protocol, zero-trust models, and GraphQL to balance innovation with safeguards against data exposure and autonomous decision risks.

6 Jul 2026 Developers May Stop Depending on Libraries

Recommended: There is more than one way to build with AI

Advancements in AI tools like Hugging Face MCP and Fast Agent simplify LLM integration for innovative workflows, emphasizing idea-driven development, Rust's performance, open-source models (e.g., Gemma 4, Quen), and accessible tools for non-experts, while balancing efficiency, transparency challenges, and evolving SDKs.

6 Jul 2026 10 Cities. 4 Countries. One Unexpected MCP Lesson.

The Model Communication Protocol (MCP) enables secure AI-to-tool integration via APIs, with DeepL promoting it through global workshops, hackathons, and practical examples like a Python server, emphasizing security, implementation challenges, and hands-on learning to bridge technical gaps and enhance AI workflows.

More MLOps.community episodes