118 wires and counting
$ status: archived — this briefing has stopped; the archive stays readable. browse live briefings →

$ status

wire 2026-05-28
stories 24

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

LARAVEL'S MCP CLIENT NOW DISCOVERS AND INVOKES REMOTE TOOLS

By RepoJournal · Filed · About Laravel · Composed from the cited sources · methodology

Laravel's Model Context Protocol client went from connection-only to fully functional overnight, letting you list and call tools exposed by any MCP server.

The MCP client [1] shipped tool discovery and invocation on top of the stdio transport foundation that landed last week. You can now list a server's tools with auto-pagination and invoke them directly from your Laravel application, opening the door to AI-native integrations that actually talk back. Meanwhile, the framework's HTTP client [2] now works as a PSR-7 compliant client, meaning you can drop it into any package expecting `ClientInterface` and get full middleware support including request logging. The WorkOS starterkit [3] added password and email change request helpers, giving you the scaffolding to let users manage their own auth without custom plumbing. Three fixes landed for 13.x: the image validation ratio checks [5] had inverted comparison operators that silently failed correct images, the HTTP client [4] now normalizes header values to avoid deprecation warnings from guzzlehttp/psr7 3.0, and the scheduler [6] lets you opt out of cache checks independently for servers running high-frequency tasks. The installer [7] gained a `--no-node` flag for Starter Kits that don't need Node, and laravel/ai reverted [8] a problematic model attribute change that was breaking failover behavior.

Action items

References

  1. [1] Add MCP client tool listing and calling ↗ laravel/mcp
  2. [2] [13.x] Allow Http Client to be used as PSR Client ↗ laravel/framework
  3. [3] Requests for Email & Password Change ↗ laravel/workos
  4. [4] [13.x] Normalize HTTP client header values ↗ laravel/framework
  5. [5] [13.x] Fix inverted ratio comparison operators in image dimension validation ↗ laravel/framework
  6. [6] [13.x] Allow scheduler to opt out of pause and interrupt cache checks ↗ laravel/framework
  7. [7] Adds a no-node option to skip installing and building NPM dependencies entirely ↗ laravel/installer
  8. [8] Revert "Apply model attribute and explicit model to all providers in a failover list" ↗ laravel/ai

Quick answers

What shipped in Laravel on May 28, 2026?
Laravel's Model Context Protocol client went from connection-only to fully functional overnight, letting you list and call tools exposed by any MCP server. In total, 14 commits and 10 pull requests landed.
Who contributed to Laravel on May 28, 2026?
8 developers shipped this update, including pushpak1300, willrowe, fritzfr, GrahamCampbell, Button99, jackbayliss, tonysm, and taylorotwell.
What were the notable Laravel updates?
Add MCP client tool listing and calling, [13.x] Allow Http Client to be used as PSR Client, and Requests for Email & Password Change.