refactor: move MCP server config inline to plugin.json

Move MCP server configuration from standalone .mcp.json to inline
definition in plugin.json. This consolidates all plugin metadata
in a single location.

- Add type: stdio and env fields to inline config
- Remove redundant .mcp.json file
- Maintains same functionality with cleaner structure
This commit is contained in:
Jacob Magar
2026-02-16 17:30:25 -05:00
parent 9a3ccce574
commit 5b6a728f45
2 changed files with 5 additions and 13 deletions

View File

@@ -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"
}
}
}
}

View File

@@ -1,12 +0,0 @@
{
"mcpServers": {
"unraid": {
"type": "stdio",
"command": "uv",
"args": ["run", "--directory", "${CLAUDE_PLUGIN_ROOT}", "unraid-mcp-server"],
"env": {
"UNRAID_MCP_TRANSPORT": "stdio"
}
}
}
}