From 216afcbe485acb38c41d5cd82bd403ed41f88db2 Mon Sep 17 00:00:00 2001 From: Jacob Magar Date: Mon, 16 Feb 2026 17:23:05 -0500 Subject: [PATCH] feat: add MCP server configuration for Claude Code plugin integration Add .mcp.json to configure the Unraid MCP server as a stdio-based MCP server for Claude Code plugin integration. This allows Claude Code to automatically start and connect to the server when the plugin is loaded. - Type: stdio (standard input/output communication) - Command: uv run unraid-mcp-server - Forces stdio transport mode via UNRAID_MCP_TRANSPORT env var --- .mcp.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..e00108e --- /dev/null +++ b/.mcp.json @@ -0,0 +1,12 @@ +{ + "mcpServers": { + "unraid": { + "type": "stdio", + "command": "uv", + "args": ["run", "unraid-mcp-server"], + "env": { + "UNRAID_MCP_TRANSPORT": "stdio" + } + } + } +}