From 93f4215ee932f24185293913d50a767576c78d5c Mon Sep 17 00:00:00 2001 From: yanivt Date: Mon, 17 Aug 2026 16:53:53 +0300 Subject: [PATCH 1/4] Change jfrog mcp --- README.md | 10 +++++----- plugin/.mcp.json | 12 +----------- 2 files changed, 6 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 0535d98..b9ec683 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The JFrog plugin provides the following capabilities, grouped by component: | Component | Feature | Description | | --------- | ---------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| **MCP** | JFrog MCP server | Remote JFrog MCP server auto-attached to every session via `.mcp.json` at `${JFROG_URL}/mcp` (OAuth, no API keys). | +| **MCP** | JFrog MCP server | Remote JFrog MCP server auto-attached to every session via `.mcp.json` at `https://${env:JFROG_PLATFORM_URL}/mcp` (OAuth, no API keys). | | **Skill** | Agent Guard | Copilot manages MCPs through the JFrog Agent Guard. Through it you can discover, install, configure, update, and remove MCP servers from the JFrog AI Catalog approved for your project, and authenticate to remote HTTP MCPs via OAuth, API key, or bearer token. | | **Hook** | Agent Package Resolution (Preview) | Inject Artifactory routing instructions at the start of each Copilot session. | @@ -147,16 +147,16 @@ See the [JFrog MCP Registry troubleshooting guide](https://docs.jfrog.com/ai-ml/ ### The `jfrog` MCP server shows "Stopped" -VS Code starts MCP servers on demand, so the `jfrog` server often shows **Stopped** until something needs it. This is expected — but if the tools aren't showing up, start it manually first: open the **MCP: List Servers** command (or the MCP view), select **jfrog**, and choose **Start Server**. Once it's running you'll see the `enable_jfrog_tools` tool (or the real JFrog tools once authenticated). +VS Code starts MCP servers on demand, so the `jfrog` server often shows **Stopped** until something needs it. This is expected — but if the tools aren't showing up, start it manually first: open the **MCP: List Servers** command (or the MCP view), select **jfrog**, and choose **Start Server**. On first start VS Code opens the browser for a one-time OAuth authorization, after which the JFrog tools appear. ### JFrog MCP tools don't appear after signing in -The JFrog MCP is proxied by Agent Guard. Until you're authenticated it exposes a single `enable_jfrog_tools` tool; calling it opens the browser for a one-time authorization and then the real JFrog tools are added to the session. In VS Code / Copilot Chat two extra steps are sometimes needed before the agent can use them: +The JFrog MCP is a remote HTTP server the plugin attaches at `https://${env:JFROG_PLATFORM_URL}/mcp`; VS Code authorizes it over OAuth on first connect (no API keys). In VS Code / Copilot Chat two extra steps are sometimes needed before the agent can use the tools: -- **Enable the tools in the tool picker.** Open the 🛠 **Configure Tools** panel and enable the `jfrog-mcp` server's tools — newly added tools are not selected automatically. +- **Enable the tools in the tool picker.** Open the 🛠 **Configure Tools** panel and enable the `jfrog` server's tools — newly added tools are not selected automatically. - **Open a new chat.** A chat's tool set is fixed when it starts, so the tools that appeared after login only take effect in a new chat. -If the agent keeps falling back to the `jf` CLI even though the JFrog tools are present, it usually means the tools aren't selected in the picker — enable them and start a new chat. An empty or login-only tool list means "call `enable_jfrog_tools`", not that the MCP is broken. +If the agent keeps falling back to the `jf` CLI even though the JFrog tools are present, it usually means the tools aren't selected in the picker — enable them and start a new chat. Make sure `JFROG_PLATFORM_URL` is set in the IDE launch environment so `https://${env:JFROG_PLATFORM_URL}/mcp` resolves correctly. --- diff --git a/plugin/.mcp.json b/plugin/.mcp.json index 47a2879..cd40bfc 100644 --- a/plugin/.mcp.json +++ b/plugin/.mcp.json @@ -1,17 +1,7 @@ { "mcpServers": { "jfrog": { - "type": "stdio", - "command": "npx", - "args": [ - "--yes", - "--registry", - "https://releases.jfrog.io/artifactory/api/npm/coding-agents-npm/", - "@jfrog/agent-guard" - ], - "env": { - "_JF_ARGS": "mcp=jfrog-mcp" - } + "url": "https://${env:JFROG_PLATFORM_URL}/mcp" } } } From b39d3c18fe8a92f480b90e10996d771d39c737e2 Mon Sep 17 00:00:00 2001 From: yanivt Date: Thu, 20 Aug 2026 20:33:07 +0300 Subject: [PATCH 2/4] add type --- plugin/.mcp.json | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/.mcp.json b/plugin/.mcp.json index cd40bfc..71abb2a 100644 --- a/plugin/.mcp.json +++ b/plugin/.mcp.json @@ -1,6 +1,7 @@ { "mcpServers": { "jfrog": { + "type":"http", "url": "https://${env:JFROG_PLATFORM_URL}/mcp" } } From aeda8ac9c2199cb50976eb767eb5151ae2131c59 Mon Sep 17 00:00:00 2001 From: yanivt Date: Thu, 20 Aug 2026 20:50:58 +0300 Subject: [PATCH 3/4] bump version and update readme --- README.md | 9 +++++---- marketplace.json | 2 +- plugin/.claude-plugin/plugin.json | 2 +- plugin/.mcp.json | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b9ec683..4b2a9a4 100644 --- a/README.md +++ b/README.md @@ -83,10 +83,11 @@ VS Code opens, prompts you to install the plugin, and asks you to **Trust** the ### 1. Set persistent environment variables -| Variable | Description | -| -------------------- | ---------------------------------------------------------------------------- | -| `JFROG_URL` | Your JFrog platform URL, e.g. `https://mycompany.jfrog.io` (no trailing `/`) | -| `JFROG_ACCESS_TOKEN` | Your JFrog access token | +| Variable | Description | +| -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | +| `JFROG_URL` | Your JFrog platform URL, e.g. `https://mycompany.jfrog.io` (no trailing `/`). Used by the `jf` CLI and Agent Guard. | +| `JFROG_PLATFORM_URL` | Your JFrog platform host, **without** the scheme, e.g. `mycompany.jfrog.io`. Resolves the JFrog MCP server URL (`https://${env:JFROG_PLATFORM_URL}/mcp`). | +| `JFROG_ACCESS_TOKEN` | Your JFrog access token | ### 2. Configure the JFrog CLI diff --git a/marketplace.json b/marketplace.json index 9b41c63..8953ed2 100644 --- a/marketplace.json +++ b/marketplace.json @@ -9,7 +9,7 @@ { "name": "jfrog", "description": "JFrog Platform integration with MCP, security skills, and supply-chain best practices", - "version": "1.0.16", + "version": "1.0.19", "license": "Apache-2.0", "source": "plugin", "categories": [ diff --git a/plugin/.claude-plugin/plugin.json b/plugin/.claude-plugin/plugin.json index 8747693..4450e32 100644 --- a/plugin/.claude-plugin/plugin.json +++ b/plugin/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "jfrog", "description": "JFrog Platform integration with MCP, security skills, and supply-chain best practices", - "version": "1.0.16", + "version": "1.0.19", "license": "Apache-2.0", "author": { "name": "JFrog", diff --git a/plugin/.mcp.json b/plugin/.mcp.json index 71abb2a..75b96ec 100644 --- a/plugin/.mcp.json +++ b/plugin/.mcp.json @@ -1,7 +1,7 @@ { "mcpServers": { "jfrog": { - "type":"http", + "type": "http", "url": "https://${env:JFROG_PLATFORM_URL}/mcp" } } From a8dd08c771c9280c44307f590951fda15e9ad6ca Mon Sep 17 00:00:00 2001 From: yanivt Date: Sun, 23 Aug 2026 13:48:05 +0300 Subject: [PATCH 4/4] Change JFROG_URL comment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b2a9a4..fcdfaf6 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ VS Code opens, prompts you to install the plugin, and asks you to **Trust** the | Variable | Description | | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -| `JFROG_URL` | Your JFrog platform URL, e.g. `https://mycompany.jfrog.io` (no trailing `/`). Used by the `jf` CLI and Agent Guard. | +| `JFROG_URL` | Your JFrog platform URL, e.g. `https://mycompany.jfrog.io` (no trailing `/`). | | `JFROG_PLATFORM_URL` | Your JFrog platform host, **without** the scheme, e.g. `mycompany.jfrog.io`. Resolves the JFrog MCP server URL (`https://${env:JFROG_PLATFORM_URL}/mcp`). | | `JFROG_ACCESS_TOKEN` | Your JFrog access token |