mirror of
https://github.com/jmagar/unraid-mcp.git
synced 2026-03-02 00:04:45 -08:00
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
13 lines
201 B
JSON
13 lines
201 B
JSON
{
|
|
"mcpServers": {
|
|
"unraid": {
|
|
"type": "stdio",
|
|
"command": "uv",
|
|
"args": ["run", "unraid-mcp-server"],
|
|
"env": {
|
|
"UNRAID_MCP_TRANSPORT": "stdio"
|
|
}
|
|
}
|
|
}
|
|
}
|