This Maven Dependencies MCP server, developed by Bill Hedworth, provides tools for verifying and retrieving Maven dependency versions from the Maven Central Repository. It offers functions to check the latest version of a dependency and verify if specific versions exist. The server uses the Maven Central REST API to fetch real-time dependency information, ensuring up-to-date results. By connecting AI capabilities with Maven dependency management, this implementation enables assistants to validate and update project dependencies, ensuring compatibility and security. It is particularly useful for applications requiring automated dependency checks, version upgrades, or any scenario where an AI system needs to reason about and manage Maven dependencies in software projects.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
Retrieves the latest stable release version of a Maven dependency. Input: dependency (string), excludePreReleases (optional boolean, default: true)
Checks if a specific version of a Maven dependency exists. Input: dependency (string), version (optional string)
Lists Maven dependency versions sorted by last updated date with optional pre-release filtering and depth control. Input: dependency (string), depth (optional number, default: 15), excludePreReleases (optional boolean, default: true)