artifactory-mcp
Enables AI assistants to query Maven artifacts in JFrog Artifactory by reusing credentials from ~/.m2/settings.xml and providing tools like getting latest stable versions, listing artifacts, and checking dependency updates.
README
artifactory-mcp
A Model Context Protocol (MCP) server that gives AI assistants like Claude Desktop or VS Code Copilot Chat the ability to query Maven artifacts in a JFrog Artifactory.
Reuses the same credentials Maven already uses (~/.m2/settings.xml) — no tokens passed via CLI args, no duplicate config, single source of truth.
Features
- Reads credentials from
~/.m2/settings.xmlby default — no--artifactory-tokenCLI arg, nothing in process listings - Looks up the latest stable Maven version (excludes SNAPSHOT, alpha, beta, RC, milestone)
- Wraps
mvn versions:*forcheck_dependency_updates— correct parent-chain and BOM resolution, reports plugin and property updates as well as dependency updates - Uses the JFrog
/api/storage/REST API for directory listings — works even when HTML browsing is disabled - Works with Claude Desktop, VS Code Copilot, Cursor, and any MCP-compatible client
Prerequisites
- Node.js 18 or higher
- npm
- Maven on
PATH(used bycheck_version_exists,check_dependency_updates, andget_pomwheneffective: true) - Either a configured
<server id="artifactory">block in~/.m2/settings.xmlOR theARTIFACTORY_*environment variables (see below)
Installation
git clone <repo-url> artifactory-mcp
cd artifactory-mcp
npm install
No build step — the server runs directly from src/index.js.
Configuration
The server resolves credentials and the Artifactory URL in this order:
- Env vars —
ARTIFACTORY_URL,ARTIFACTORY_USERNAME,ARTIFACTORY_TOKEN(orARTIFACTORY_PASSWORD). If all are set, they're used directly. ~/.m2/settings.xml—<server id="artifactory">for credentials, plus<mirror>or<repository>for the URL.
Override the server id with ARTIFACTORY_SERVER_ID (defaults to artifactory).
Maven-encrypted passwords (
{...}syntax) are not supported. Use a plaintext token insettings.xmlor setARTIFACTORY_TOKEN.
Claude Desktop
Open Claude Desktop → Settings → Developer → Edit MCP configuration, and add:
{
"mcpServers": {
"artifactory": {
"command": "node",
"args": ["/absolute/path/to/artifactory-mcp/src/index.js"],
"type": "stdio"
}
}
}
Credentials come from ~/.m2/settings.xml — no env vars or args needed.
VS Code (Copilot Chat / MCP extension)
Add to %APPDATA%\Code\User\mcp.json (Windows) or ~/.config/Code/User/mcp.json (Linux/macOS):
{
"servers": {
"artifactory": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/artifactory-mcp/src/index.js"]
}
}
}
Override (optional)
To point at a different Artifactory instance or use a different <server> id:
{
"servers": {
"artifactory": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/artifactory-mcp/src/index.js"],
"env": {
"ARTIFACTORY_URL": "https://your-artifactory.example.com/artifactory/repo-key",
"ARTIFACTORY_SERVER_ID": "my-artifactory"
}
}
}
}
Tokens passed via env (not CLI args) stay out of process listings.
Available Tools
get_metadata
Fetch the full maven-metadata.xml for an artifact.
| Parameter | Type | Required | Description |
|---|---|---|---|
groupId |
string | yes | Maven groupId (e.g. org.apache.commons) |
artifactId |
string | yes | Maven artifactId (e.g. commons-lang3) |
get_latest_stable_version
Return the latest stable version of an artifact — excludes SNAPSHOT, alpha, beta, RC, and milestone builds.
| Parameter | Type | Required |
|---|---|---|
groupId |
string | yes |
artifactId |
string | yes |
check_version_exists
Verify whether a specific artifact version exists in Artifactory.
| Parameter | Type | Required |
|---|---|---|
groupId |
string | yes |
artifactId |
string | yes |
version |
string | yes |
list_artifacts
List artifacts under a Maven groupId. Uses JFrog's /api/storage/ REST endpoint.
| Parameter | Type | Required |
|---|---|---|
groupId |
string | yes |
get_pom
Get the raw POM XML, or the effective POM with parent/BOM resolution applied.
| Parameter | Type | Required | Description |
|---|---|---|---|
groupId |
string | yes | |
artifactId |
string | yes | |
version |
string | yes | |
effective |
boolean | no | If true, runs mvn help:effective-pom to resolve parent/BOM/property chains |
check_dependency_updates
Run a dependency update report. Wraps mvn versions:display-dependency-updates, versions:display-plugin-updates, and versions:display-property-updates.
| Parameter | Type | Required | Description |
|---|---|---|---|
groupId |
string | yes* | For an Artifactory-hosted artifact |
artifactId |
string | yes* | For an Artifactory-hosted artifact |
version |
string | yes* | For an Artifactory-hosted artifact |
projectPath |
string | yes* | For a local Maven project directory (mutually exclusive with the above) |
* Provide either (groupId, artifactId, version) or projectPath.
Usage Examples (with an AI assistant)
What is the latest stable version of org.apache.commons:commons-lang3?
Does version 3.14.0 of commons-lang3 exist in our Artifactory?
List all artifacts under org.apache.logging.log4j
Show me the effective POM for org.apache.commons:commons-lang3:3.14.0
Check for dependency updates in the project at C:/path/to/my-project
Notes & Caveats
- Stable-version filter.
get_latest_stable_versionexcludes pre-release tags like-SNAPSHOT,-alpha,-beta,-RC,-M1,-M2, etc. If you want the absolute latest including pre-releases, useget_metadataand pick from the full list. - Effective POM is slow.
get_pomwitheffective: trueruns Maven, which downloads parent POMs and BOM artifacts. First-time runs against a cold local repo can take 30+ seconds. - Maven required for
check_dependency_updates. This tool spawnsmvn— make sure Maven 3.x is onPATH.
Security
- Use a token, not a password. Generate an identity token in Artifactory and put it in
~/.m2/settings.xml<password>(orARTIFACTORY_TOKEN). - Don't commit
settings.xml. Treat it like a credential file. - No Maven password encryption. This server does not decrypt
{...}encrypted passwords fromsettings.xml. Use plaintext tokens or env vars.
Troubleshooting
| Symptom | Fix |
|---|---|
Could not find credentials |
Set ARTIFACTORY_USERNAME + ARTIFACTORY_TOKEN env vars, or add a <server id="artifactory"> block to ~/.m2/settings.xml |
Could not discover Artifactory URL |
Set ARTIFACTORY_URL env var or configure a <mirror> / <repository> in settings.xml |
Maven-encrypted password not supported |
Replace the {...} encrypted password with a plaintext token, or use ARTIFACTORY_TOKEN env var |
mvn: command not found |
Install Maven 3.x and ensure it's on PATH (needed for check_dependency_updates, check_version_exists, and get_pom effective: true) |
Bitbucket API error 401 / Artifactory 401 |
Token is wrong or expired — regenerate in Artifactory UI |
Development
npm start # runs node src/index.js
Source lives in src/. Tools register themselves into the MCP server via the registerXxx(server, config) pattern.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。