0.13.0 (2026-03-08)
🚀 Breaking Changes
- Deprecate
McpServersclass in favor ofMcpApplication- TheMcpServersclass is now deprecated and will be removed in a future version. UseMcpApplication.run()instead for a simpler API.
Migration Guide
Before (v0.12.x):
McpServers.run(MyMcpServer.class, args).startStdioServer(configuration);After (v0.13.0):
McpApplication.run(MyMcpServer.class, args);✨ Features
- Add documentation setup with MkDocs and GitHub Pages deployment
- Introduce
McpApplicationas the new main entry point for MCP servers
🔧 Improvements
- Rename
InvocationResulttoInvocationwith improved error handling - Use
Durationfor time interval configuration - Remove
McpServerJsonProcessingExceptionand handle null cases gracefully - Improve logging messages and server initialization
🐛 Bug Fixes
- Fix CI: add execute permission to
./mvnw - Fix annotations: change default
requiredvalue totrueforMcpToolParam,McpPromptParam,McpJsonSchemaProperty
📦 Dependencies
- MCP SDK: Update to
1.0.0(official stable release) - Jetty: Update to
12.1.7 - JUnit: Update to
6.1.0-M1 - Mockito: Update to
5.22.0 - Logback: Update to
1.5.32 - JetBrains Annotations: Update to
26.1.0
🔨 Build & CI
- Add Maven wrapper files for project initialization
- Add
maven-enforcer-pluginto enforce Maven 3.9.0+ and Java 17+ - Add
versions-maven-pluginfor dependency update checking - Update Maven plugins to latest versions:
maven-compiler-plugin: 3.15.0maven-gpg-plugin: 3.2.8maven-javadoc-plugin: 3.12.0maven-source-plugin: 3.4.0maven-surefire-plugin: 3.5.5spotbugs-maven-plugin: 4.9.8.2spotless-maven-plugin: 3.3.0jacoco-maven-plugin: 0.8.14central-publishing-maven-plugin: 0.10.0
📚 Documentation
- Add comprehensive documentation site with MkDocs
- Update README for v0.13.0 release
- Add detailed Javadoc for
McpApplication.startMcpServer()method - Update badge labels and add commit activity
🙏 What's Changed
This release marks a significant milestone with the official MCP SDK v1.0.0 support and introduces a cleaner API through McpApplication. The documentation has been greatly improved with a dedicated documentation site.