From db44ad47ec3bdce972fe215dc6fdaecda02e6adb Mon Sep 17 00:00:00 2001 From: Jacob Magar Date: Mon, 16 Feb 2026 16:42:56 -0500 Subject: [PATCH] fix: correct marketplace.json source field format Change source from absolute GitHub URL to relative path "./" This follows Claude Code marketplace convention where source paths are relative to the cloned repository root, not external URLs. Matches pattern from working examples like claude-homelab marketplace. --- .claude-plugin/marketplace.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 576fa9e..c814f03 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -13,7 +13,7 @@ "plugins": [ { "name": "unraid", - "source": "https://github.com/jmagar/unraid-mcp", + "source": "./", "description": "Query and monitor Unraid servers via GraphQL API - array status, disk health, containers, VMs, system monitoring", "version": "0.2.0", "tags": ["unraid", "monitoring", "homelab", "graphql", "docker", "virtualization"],