Official X account for Spring AI from @SpringCentral

Joined October 2024
1 Photos and videos
🚀 Spring AI 2.0.0 GA is now available! 🏗️ Improved foundations: Spring Boot 4 baseline, null-safety, Jackson 3, re-designed options 🤖 Agentic improvements: unified tool calling, tool search, self-correcting output 🔌 MCP 2025-11-25 spec integration spring.io/blog/2026/06/12/sp…
1
18
57
3,945
🚀 Spring AI 2.0.0-RC2 is out and one more step to GA! ✅Configurable HTTP clients for OpenAI & Anthropic ✅ Restored Spring Framework < 7.0.4 compatibility ✅ Multi-turn thinking fixed for Ollama & OpenAI, bug fixes and more on spring.io/blog/2026/06/09/sp…
1
11
31
2,250
🎉 Spring AI 2.0.0-RC1 is now on Maven Central! Highlights: 🔧 Unified tool execution via ToolCallingAdvisor 🔍 On-demand tool discovery with ToolSearchToolCallingAdvisor 📦 MCP SDK upgraded to 2.0.0-RC1 and more details on spring.io/blog/2026/06/06/sp…
17
46
4,735
🚀 Spring AI 2.0.0-M8 is out! This milestone brings improved Mistral AI Jackson mapping, and key bug fixes — including the OpenAI API no auth key and transitive auto-configuration dependency issues. More details on: spring.io/blog/2026/05/27/sp…
1
8
22
2,305
Spring AI 1.0.8, 1.1.7, and 2.0.0-M7 are out now! 🚀 2.0.0-M7 highlights: 🔧 ToolCallAdvisor is now the default ✨ New ToolSpec fluent API along with important improvements, stability enhancements, and bug fixes on 1.1.7 and 1.0.8: spring.io/blog/2026/05/23/sp…
10
32
3,457
Spring AI retweeted
In this Spring AI Recipe, learn how to define reusable MCP prompts that deliver consistent, high-quality LLM interactions across clients with Spring AI. medium.com/@thetalkingapp/sp… #SpringAI #AI #GenAI #MCP
1
9
445
Spring AI retweeted
Head up: I’ve scheduled more Spring AI recipes to auto-publish this week even while I’m on a ship sailing in Alaska. But, my ability to push the code to GitHub and the updates to habuma.com will depend on connectivity that I may not have. Sorry for the delays.
2
9
469
Spring AI retweeted
New blog post alert 🚨 "Building AI Agents with Spring AI and Amazon Bedrock AgentCore – Part 2 Deploy Conference Search application on AgentCore Runtime". vkazulkin.com/building-ai-ag… #AWS @java @SpringAICentral @springboot #AWS #mcp #genai #agenticai #bedrockagentcore
2
1
8
811
Spring AI retweeted
New blog post alert 🚨 "Building AI Agents with Spring AI and Amazon Bedrock AgentCore – Part 3 Develop local MCP client for Conference application". @java #AWS @springboot @SpringAICentral #mcp #agenticai #Java #bedrockagentcore vkazulkin.com/building-ai-ag…
1
3
11
764
Spring AI retweeted
New blog post alert 🚨 "Building AI Agents with Spring AI and Amazon Bedrock AgentCore – Part 4 Provide MCP tools for Conference application via AgentCore Gateway". @java #AWS @springboot @SpringAICentral #mcp #agenticai #Java #bedrockagentcore vkazulkin.com/building-ai-ag…
3
7
676
Spring AI 1.0.7, 1.1.6, and 2.0.0-M6 are out! 🚀 These releases include improvements, bug fixes, and documentation updates. More details on this here: spring.io/blog/2026/05/08/sp…
1
6
30
1,843
Spring AI retweeted
So you’ve built an MCP server with STDIO? That’s great! Now take it from local integration to network-accessible service. In today’s Spring AI recipe, learn to create a Streamable HTTP MCP server. medium.com/@thetalkingapp/sp… #SpringAI #MCP #AgenticAI #Java
1
3
10
456
Spring AI retweeted
New blog post alert 🚨 "Building AI Agents with Spring AI and Amazon Bedrock AgentCore – Part 1 Introduction to the series". vkazulkin.com/building-ai-ag… @SpringAICentral #Java #BedrockAgentCore @springboot #MCP #agenticai #genai
2
3
12
846
🚀Spring AI 2.0.0-M5 is out. What's new: the existing spring-ai-openai module now uses the official OpenAI Java SDK, Anthropic native web search thinking display, other enhancements and bug fixes: spring.io/blog/2026/04/27/sp…
12
37
2,283
Spring AI retweeted
If you're using Spring AI, you have the integration layer sorted. Keep your #Spring beans, and add Koog, the JVM AI agent framework from @JetBrains, on top for the following: ✔️ Graph workflows ✔️ Crash recovery ✔️ History compression 👇 jb.gg/koog-springai
1
15
68
8,596
Spring AI retweeted
Apr 21
If you want to learn Spring AI, I highly recommend this presentation "Integrating AI into Your Java Applications: Spring AI Deep Dive with RAG" by @christzolov youtube.com/watch?v=48Ht5lE1… This talk covers, foundational concepts of @SpringAICentral , advanced concepts like Agentic Patterns, AI Protocols, etc.
25
163
12,255
Spring AI retweeted
2
4
436
Spring AI retweeted
Spring AI provides one of the most powerful agent harnesses, with support for tools, advisors, skills, memory, etc. All we gotta do is build!
Claude Code fully dissected! Researchers from UCL reverse-engineered the leaked Claude source. What they found changes how you should think about agent design. Only 1.6% of the codebase is AI decision logic. The other 98.4% is operational infrastructure. Permission gates, tool routing, context compaction, recovery logic, session persistence. The model reasons. The harness does everything else. This is the opposite of what most agent frameworks do today. LangGraph routes model outputs through explicit state machines. Devin bolts heavy planners onto operational scaffolding. Claude Code gives the model maximum decision latitude inside a rich deterministic harness, and invests all its engineering effort in that harness. The core loop is a simple while-true. Call model, run tools, repeat. But the systems around that loop are where the real design lives: A permission system with 7 modes and an ML classifier. Users approve 93% of prompts anyway, so the architecture compensates with automated layers instead of adding more warnings. A 5-layer context compaction pipeline. Each layer runs only when cheaper ones fail. Budget reduction, snip, microcompact, context collapse, auto-compact. Four extension mechanisms ordered by context cost. Hooks (zero), skills (low), plugins (medium), MCP (high). Each answers a different integration problem. Subagents return only summary text to the parent. Their full transcripts live in sidechain files. Agent teams still cost roughly 7x the tokens of a standard session. Resume does not restore session-scoped permissions. Trust is re-established every session. That friction is the point. The bet behind all of this is simple. As frontier models converge on raw coding ability, the quality of the harness becomes the differentiator, not the model. Paper: Dive into Claude Code (arXiv:2604.14228) In the next tweet, I've shared an article I wrote on Agent Harness and what every big company is building. Do check.
2
8
42
10,142
Spring AI retweeted
On my way to Bangalore to present at GIDS about Spring AI, Amazon Bedrock, and MCP. Can’t wait to be with this passionate developer community again!
2
5
22
1,461