What's New With 8.1.0
April 14, 2026
Major Highlights
🤖 AI & MCP Routing — toAi() and toMCP()
toAi() and toMCP()toAi() — Auto-scaffolded AI REST API
toAi() — Auto-scaffolded AI REST APIVerb
Endpoint
Description
// One line → four REST endpoints for your AI agent
route( "/api/chat" ).toAi( "MyChatAgent" );
// Using a direct WireBox instance
route( "/api/embeddings" ).toAi( getInstance( "EmbeddingRunnable" ) );
// With auth guard inherited by all four sub-routes
route( "/api/chat" )
.withCondition( ( route, params, event ) => event.isAuthenticated() )
.toAi( "MyChatAgent" );toMCP() — Expose MCP Servers Over HTTP/HTTPS
toMCP() — Expose MCP Servers Over HTTP/HTTPS⏰ Scheduler Enhancements
🔒 Cluster Lock Algorithm Upgrade
🌐 BoxLang Engine Agnosticism
🗑️ Module cfmapping Deprecation
cfmapping DeprecationRelease Notes
Last updated
Was this helpful?