mirror of
https://github.com/NVIDIA/dgx-spark-playbooks.git
synced 2026-04-22 01:53:53 +00:00
This playbook installs the DGX Spark MCP Server, a tool for hardware-aware Spark optimization on DGX systems. Includes: - Installation script (npm based) - Systemd service configuration - Default configuration - Documentation
34 lines
634 B
JSON
34 lines
634 B
JSON
{
|
|
"server": {
|
|
"port": 3000,
|
|
"host": "localhost",
|
|
"nodeEnv": "production"
|
|
},
|
|
"logging": {
|
|
"level": "info",
|
|
"format": "json",
|
|
"dir": "/var/log/dgx-spark-mcp",
|
|
"maxFiles": 10,
|
|
"maxSize": "10m"
|
|
},
|
|
"mcp": {
|
|
"serverName": "dgx-spark-mcp",
|
|
"serverVersion": "0.1.0",
|
|
"transport": "stdio"
|
|
},
|
|
"hardware": {
|
|
"nvidiaSmiPath": "/usr/bin/nvidia-smi",
|
|
"cacheTTL": 30000,
|
|
"enableGpuMonitoring": true
|
|
},
|
|
"spark": {},
|
|
"performance": {
|
|
"enableMetrics": true,
|
|
"metricsInterval": 60000,
|
|
"healthCheckInterval": 30000
|
|
},
|
|
"security": {
|
|
"enableAuth": false
|
|
}
|
|
}
|