📜 Anthropic just shipped a major update to the Model Context Protocol (MCP), the plumbing that lets Claude talk to outside tools and connectors. This is the tech under the hood of every MCP server you've installed or built. Here's what actually changed. ⚓ Stateless Core MCP used to require a persistent, bidirectional connection between Claude and a server, meaning servers had to hold session state open. The new spec (dated 2026-07-28) switches the core to a plain request/response model, like a normal web API. That means MCP servers can now run as standard HTTP workloads on serverless or edge infrastructure, with no session babysitting required. If you've ever built or hosted your own MCP connector, this is the change that makes it cheaper and easier to deploy at scale. ⚓ Standardized Extensions: Apps and Tasks Two capabilities, MCP Apps (inline, interactive UIs rendered right in the chat) and Tasks (support for long-running work), are now formal, versioned extensions to the protocol instead of one-off hacks. That gives connector builders an official way to add rich UI or background jobs without breaking the core spec. ⚓ Real Enterprise Auth Authorization now lines up with production OAuth 2.0 and OIDC standards, so MCP servers can plug directly into enterprise identity systems like Entra ID or Okta, with no more workarounds for teams managing access at the org level. ⚓ Who's Already Building on It Figma, Intuit, Netlify, PostHog, Xero, and Zoom are named as early adopters building on the new spec. Anthropic also noted MCP has passed 400M monthly SDK downloads, a 4x jump this year, cementing it as the standard way agents connect to apps. ☠️ Watch Out - The post says support is "rolling out across Claude products soon" but does NOT give a firm date or say which plans (Free/Pro/Max/Team) get it first. Expect a staggered rollout. - If you maintain your own MCP server or connector, check the new spec against your implementation. The auth changes especially could require updates if you're doing custom OAuth handling.