diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index b650f84..fe9d95d 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -10,13 +10,17 @@ "repository": "https://github.com/jmagar/unraid-mcp", "mcpServers": { "unraid": { + "type": "stdio", "command": "uv", "args": [ "run", "--directory", "${CLAUDE_PLUGIN_ROOT}", "unraid-mcp-server" - ] + ], + "env": { + "UNRAID_MCP_TRANSPORT": "stdio" + } } } } diff --git a/.mcp.json b/.mcp.json deleted file mode 100644 index 4188e99..0000000 --- a/.mcp.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "mcpServers": { - "unraid": { - "type": "stdio", - "command": "uv", - "args": ["run", "--directory", "${CLAUDE_PLUGIN_ROOT}", "unraid-mcp-server"], - "env": { - "UNRAID_MCP_TRANSPORT": "stdio" - } - } - } -}