Files
unraid-mcp/.claude-plugin/plugin.json
Jacob Magar 5b6a728f45 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
2026-02-16 17:30:25 -05:00

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