Posts

Showing posts from 2026

SharePoint MCP in Enterprise

Image
Sharepoint documents into AI-Usable  Knowledge Why this matters Most enterprise teams already store critical knowledge in SharePoint: employee profiles, project documents, delivery evidence, and internal standards.   The challenge is not where the data lives; it is how quickly an AI system can find, validate, and summarize the right document at runtime. A concrete consulting use case: delivery and staffing teams regularly receive project requests with specific skill requirements (for example, Spring migration, Azure integration, or domain-specific experience). The real bottleneck is mapping those requirements to available internal talent quickly and with confidence.   This SharePoint MCP pattern bridges that gap by converting profile repositories into tool-accessible enterprise knowledge that an AI agent can search, score, and explain. This project (`spring-ai-sharepoint-mcp`) addresses that gap by exposing SharePoint capabilities as MCP tools that AI agents can...

Enabling AI in Enterprise Java with Spring AI, Multi-Agents RAG and LiteLLM

Image
  Overview With Spring AI Multi-Agent RAG, I wanted to explore how AI capabilities can be integrated into a Java and Spring-based backend in a way that makes sense for enterprise teams. Instead of forcing organizations to jump to a completely different ecosystem just to work with LLMs, this project shows that existing Spring Boot applications, Java teams, and enterprise architectures can adopt AI capabilities directly within the stack they already use. A lot of AI tooling still assumes teams are ready to rebuild around Python-first frameworks. That is fine for experimentation, but it is not how most enterprise systems work. The practical question is not whether AI can be built in Python. Of course it can. The real question is whether existing enterprise teams can add AI capabilities without abandoning the stack, language, and operational model they already trust. ·         Java ·         Spring Boot ·...

Spring AI : My Multi-Provider AI Chat

Image
Spring AI : Multi-Provider AI Chat  Overview I recently published a small hands-on project to explore how to build AI capabilities in Java using Spring Boot and Spring AI. Project links: Project Description Git Hub  Explore different options using spring ai chatclient GitHUB Implementing Tools calling concept with spring ai GitHUB I’ve kept the repository README detailed so anyone can run and test the APIs quickly. If you’re learning Spring AI and want a compact reference project, feel free to explore, fork, or share feedback. Why Spring AI? Most AI examples today are Python-first, which makes sense from a research perspective. But in many enterprise environments, core systems are still Java-based. Spring AI brings AI integration into the familiar Spring ecosystem. That means: Dependency injection and clean configuration Provider abstraction (switch models without rewriting business log...