mirror of
https://github.com/jmagar/unraid-mcp.git
synced 2026-03-02 00:04:45 -08:00
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:
@@ -10,13 +10,17 @@
|
|||||||
"repository": "https://github.com/jmagar/unraid-mcp",
|
"repository": "https://github.com/jmagar/unraid-mcp",
|
||||||
"mcpServers": {
|
"mcpServers": {
|
||||||
"unraid": {
|
"unraid": {
|
||||||
|
"type": "stdio",
|
||||||
"command": "uv",
|
"command": "uv",
|
||||||
"args": [
|
"args": [
|
||||||
"run",
|
"run",
|
||||||
"--directory",
|
"--directory",
|
||||||
"${CLAUDE_PLUGIN_ROOT}",
|
"${CLAUDE_PLUGIN_ROOT}",
|
||||||
"unraid-mcp-server"
|
"unraid-mcp-server"
|
||||||
]
|
],
|
||||||
|
"env": {
|
||||||
|
"UNRAID_MCP_TRANSPORT": "stdio"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user