TL;DR: Laravel Cloud extends Forge into a fully managed deployment model, while an MCP server connected to Claude Code lets AI query Laravel docs, run migrations, and execute PHP with version awareness, according to WorkOS’s interview with Taylor Otwell. The shift shows how agent-assisted development can accelerate established frameworks, but also exposes a training-data advantage that newer frameworks may struggle to overcome.
NHIMG editorial — based on content published by WorkOS: a conversation with Taylor Otwell, creator of Laravel, at AWS re:Invent 2025
Questions worth separating out
Q: How should teams govern AI assistants that can run migrations and execute code?
A: Treat those assistants as governed non-human identities with narrowly scoped tool permissions, explicit environment boundaries, and logged execution paths.
Q: Why do version-aware AI assistants change the risk profile for software teams?
A: Because the assistant is no longer generating generic output.
Q: What do teams get wrong about managed deployment platforms and identity governance?
A: They often treat the platform as an infrastructure convenience instead of a control plane with its own identities and permissions.
Practitioner guidance
- Map assistant tool access to specific operational verbs Limit MCP-backed assistants to the exact actions they need, such as read documentation, generate code, or run migrations in approved environments.
- Bind AI workflows to authoritative version metadata Ensure the assistant reads version and environment state from trusted sources before generating or executing anything.
- Separate preview, deployment, and production identities Use distinct non-human identities for preview environments, deployment pipelines, and production change actions so one workflow does not inherit broader platform authority than intended.
What's in the full article
WorkOS's full interview covers the operational detail this post intentionally leaves for the source:
- Taylor Otwell’s full commentary on how Laravel Cloud evolved from Forge and why the managed model changes the product direction.
- His reasoning on why LLMs are unusually effective at writing Laravel code, including the impact of long-lived framework documentation and examples.
- Details on the MCP server design, including version awareness, documentation lookup, database migrations, and PHP execution.
- The broader discussion of whether new frameworks can compete when they lack the training-data advantage that established ecosystems already have.
👉 Read WorkOS's interview with Taylor Otwell on Laravel Cloud and MCP →
Laravel Cloud, MCP, and AI coding agents: what changes now?
Explore further
Managed development platforms are becoming identity planes, not just tooling layers. Laravel Cloud is a good example of a broader market shift: the more application lifecycle work moves into managed services, the more identity and access decisions concentrate in the control plane. That means deployment, preview, and automation permissions matter as much as application authentication. Practitioners should treat the platform as part of the identity architecture, not as a separate developer convenience layer.
A few things that frame the scale:
- When AWS credentials are exposed publicly, attackers attempt access within an average of 17 minutes, and as quickly as 9 minutes in some cases, according to LLMjacking: How Attackers Hijack AI Using Compromised NHIs.
- That same research found that DeepSeek accidentally embedded over 11,000 secrets in its training data and left a database exposed online, revealing more than one million sensitive records including chat histories, backend credentials, and API keys.
A question worth separating out:
Q: How do AI-assisted coding workflows differ from ordinary developer automation?
A: Ordinary automation follows predefined steps, while AI-assisted workflows can choose which action to take based on context and retrieved knowledge. That makes tool scope and execution boundaries more important than the model brand or interface. Teams should govern the actions the assistant may take, not just the application it sits inside.
👉 Read our full editorial: Laravel Cloud and MCP change how AI writes and runs code