File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,6 +23,12 @@ startCommand:
2323 mcpServerUrl :
2424 type : string
2525 description : Optional MCP callback/server URL
26+ dashboardUsername :
27+ type : string
28+ description : Optional dashboard username
29+ dashboardPassword :
30+ type : string
31+ description : Optional dashboard password
2632 commandFunction : |-
2733 (config) => ({
2834 command: 'node',
@@ -31,6 +37,8 @@ startCommand:
3137 DOCUMENT_ENGINE_BASE_URL: config.documentEngineBaseUrl,
3238 DOCUMENT_ENGINE_API_AUTH_TOKEN: config.documentEngineApiAuthToken,
3339 DOCUMENT_ENGINE_API_BASE_URL: config.documentEngineApiBaseUrl,
34- MCP_SERVER_URL: config.mcpServerUrl
40+ MCP_SERVER_URL: config.mcpServerUrl,
41+ ...(config.dashboardUsername ? { DASHBOARD_USERNAME: config.dashboardUsername } : {}),
42+ ...(config.dashboardPassword ? { DASHBOARD_PASSWORD: config.dashboardPassword } : {})
3543 }
3644 })
You can’t perform that action at this time.
0 commit comments