- Home
- MCP servers
- Clojars
Clojars
- javascript
0
GitHub Stars
javascript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mcp-mirror-bigsy_clojars-mcp-server": {
"command": "node",
"args": [
"/path/to/clojars-deps-server/build/index.js"
]
}
}
}You deploy a dedicated MCP server that lets Claude fetch dependency details from Clojars. It provides quick access to the latest versions and checks for specific versions, enabling focused, dependency-aware workflows within your MCP-enabled tools and prompts.
How to use
You integrate the Clojars MCP Server with an MCP client to access two tools: get_clojars_latest_version and check_clojars_version_exists. When configured, Claude will list this server under Connected MCP Servers and you can invoke the tools to retrieve dependency information directly in your prompts. Use the tools to quickly verify the latest version of a dependency or confirm whether a specific version exists.
How to install
Prerequisites: Node.js installed on your system. You will also need a working MCP client setup to connect to this server.
Step 1: Clone the project repository and move into it.
Step 2: Install dependencies.
Step 3: Build the server.
Step 4: Add the server to your MCP client configuration. Use the provided start command path to your built index file.
// Example Claude (VSCode extension or desktop app) configuration snippet
{
"mcpServers": {
"clojars": {
"command": "node",
"args": ["/path/to/clojars-deps-server/build/index.js"]
}
}
}
Additional notes
After the server is added, Claude will detect and connect to it on startup. The server’s capabilities will appear in Claude’s system prompt under Connected MCP Servers, making the tools available for use.
Available tools
get_clojars_latest_version
Get the latest version of a Clojars dependency (Maven artifact) via MCP
check_clojars_version_exists
Check if a specific version of a Clojars dependency exists via MCP