A product discussed on AI Engineer.

MCP Tasks (async): Why Aren't Any Agents Supporting Them? — Cornelia Davis, Temporal
Aug 2, 2026 · 23:54
Cornelia Davis, a distributed systems veteran and technologist at Temporal, argues that MCP Tasks remain unsupported because the V1 spec was experimental and deeply involved, and she walks through the V2 redesign that makes long-running, durable tool calls practical. Using an invoice-processing flow with human-in-the-loop approval, she demonstrates that a task survives client disconnects, server crashes, and network blips because the spec says once launched, a task must be durable. She explains V1's pain points: a stateful task_list endpoint with no filtering that cannot scale to a million tasks, and a task_result tunnel that requires a long-lived connection to deliver input-required events. V2 replaces that with a stateless core, makes tasks an extension, removes task_list, and lets clients send updates into a task via a new endpoint, while keeping the lifecycle state machine unchanged. She warns that the spec only says clients 'should' persist task IDs, and without that there is no way to recover a task; her ongoing work covers a notifications protocol for scale and shipping all of this in Fast MCP.

Your Insecure MCP Server Won't Survive Production — Tun Shwe, Lenses
Apr 8, 2026 · 24:34
Tun Shwe and Jeremy Frenay from Lenses.io argue that poorly designed MCP servers are inherently insecure, and propose five core design principles—shrink attack surface, constrain inputs, treat docs as defense, return minimal data, minimize blast radius—that also thwart OWASP's MCP Top 10. They highlight that standard I/O fails under load (20 of 22 requests failing with 20 concurrent connections), forcing a shift to streamable HTTP with OAuth 2.1. Jeremy details Dynamic Client Registration (DCR) and the newer Client ID Metadata Document (CIMD) approach, noting DCR's vulnerabilities (phishing, non-portable registrations) and CIMD's stronger identity verification since November 2025. Beyond OAuth, enterprise deployment requires tool-level RBAC, data masking for PII, full audit logs, and end-to-end tracing to meet regulations like the EU AI Act.

Building Agents at Cloud Scale — Antje Barth, AWS
Aug 2, 2025 · 19:00
AWS Principal Developer Advocate Antje Barth demonstrates how to build and scale AI agents using cloud-native patterns, arguing that specialized agents will reinvent customer experiences. She showcases Alexa Plus, which orchestrates hundreds of expert systems across 600M+ devices and tens of thousands of services, and the Amazon Q Developer CLI agent, shipped in just three weeks. Barth introduces Strands Agents, an open-source Python SDK for building production-ready agents that supports multiple model providers (Claude, Llama, OpenAI) and over 20 prebuilt tools including memory, RAG, and multi-agent workflows. She demonstrates integrating MCP servers via Lambda with DynamoDB for session storage, and previews upcoming A2A protocol support and a future of personal agents connecting to agent stores.
Powered by PodHood