From aeecad8f431a434040719fab6434dbecae7d5b4e Mon Sep 17 00:00:00 2001 From: Karandeep Johar Date: Mon, 20 Apr 2026 12:34:29 -0700 Subject: [PATCH] fix(amplitude): use git-subdir source to point at plugins/amplitude (#1505) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The amplitude entry used source type "url" which clones the root of https://github.com/amplitude/mcp-marketplace — a multi-plugin repo where the actual plugin lives at plugins/amplitude/. Claude Code found no skills there, so /reload-plugins loaded 0 skills for amplitude. Switching to "git-subdir" with path "plugins/amplitude" (the same pattern used by awslabs, bigdata-com, zapier, etc.) makes Claude Code resolve the correct subdirectory and load all 27 amplitude skills. Removing the pinned sha so the plugin tracks main, consistent with how posthog and other unpinned entries behave. --- .claude-plugin/marketplace.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 9629546..c76083c 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -86,9 +86,10 @@ { "name": "amplitude", "source": { - "source": "url", + "source": "git-subdir", "url": "https://github.com/amplitude/mcp-marketplace.git", - "sha": "be54ccb66b10593721dd3a31e47b2db20ea02d2f" + "path": "plugins/amplitude", + "ref": "main" }, "description": "Use Amplitude as an expert analyst — instrument Amplitude, discover product opportunities, analyze charts, create dashboards, manage experiments, and understand users and accounts.", "category": "monitoring",