check_clojars_version_exists
Verify the existence of a specific version of a Clojars dependency to ensure its availability for your project.
Instructions
Check if a specific version of a Clojars dependency exists
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dependency | Yes | Clojars dependency name in format "group/artifact" (e.g. "metosin/reitit") | |
version | Yes | Version to check (e.g. "0.7.2") |
Input Schema (JSON Schema)
{
"properties": {
"dependency": {
"description": "Clojars dependency name in format \"group/artifact\" (e.g. \"metosin/reitit\")",
"type": "string"
},
"version": {
"description": "Version to check (e.g. \"0.7.2\")",
"type": "string"
}
},
"required": [
"dependency",
"version"
],
"type": "object"
}