dgx-spark-playbooks/nvidia/dgx-spark-mcp-server/config/default.json
Aaron Brewbaker 2d52e1aab3 feat: add DGX Spark MCP Server playbook
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
2025-11-25 19:22:44 -05:00

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