https://github.com/sammcj/mcp-package-version

check_maven_versions

Check latest stable versions for Java packages in pom.xml

Input Schema

NameRequiredDescriptionDefault
dependenciesYesArray of Maven dependencies

Input Schema (JSON Schema)

{ "properties": { "dependencies": { "description": "Array of Maven dependencies", "items": { "properties": { "artifactId": { "description": "Maven artifact ID", "type": "string" }, "groupId": { "description": "Maven group ID", "type": "string" }, "scope": { "description": "Dependency scope (e.g., compile, test, provided)", "type": "string" }, "version": { "description": "Current version (optional)", "type": "string" } }, "required": [ "groupId", "artifactId" ], "type": "object" }, "type": "array" } }, "required": [ "dependencies" ], "type": "object" }