get_clojars_latest_version
Retrieve the current version of a Clojars dependency using the Clojars-MCP-Server, providing accurate dependency information for Clojure projects.
Instructions
Get the latest version of a Clojars dependency (Maven artifact)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dependency | Yes | Clojars dependency name in format "group/artifact" (e.g. "metosin/reitit") |
Input Schema (JSON Schema)
{
"properties": {
"dependency": {
"description": "Clojars dependency name in format \"group/artifact\" (e.g. \"metosin/reitit\")",
"type": "string"
}
},
"required": [
"dependency"
],
"type": "object"
}