mirror of
https://github.com/jmagar/unraid-mcp.git
synced 2026-03-01 16:04:24 -08:00
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
27 lines
654 B
JSON
27 lines
654 B
JSON
{
|
|
"name": "unraid",
|
|
"description": "Query and monitor Unraid servers via GraphQL API - array status, disk health, containers, VMs, system monitoring",
|
|
"version": "0.2.0",
|
|
"author": {
|
|
"name": "jmagar",
|
|
"email": "jmagar@users.noreply.github.com"
|
|
},
|
|
"homepage": "https://github.com/jmagar/unraid-mcp",
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|