You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rootCmd.Flags().BoolVar(¶llelLaunch, "parallel-launch", defaultParallelLaunch, "Launch MCP servers in parallel during startup (enabled by default)")
78
81
rootCmd.Flags().CountVarP(&verbosity, "verbose", "v", "Increase verbosity level (use -v for info, -vv for debug, -vvv for trace)")
Copy file name to clipboardExpand all lines: internal/config/config.go
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,10 @@ const (
24
24
25
25
// Config represents the MCPG configuration
26
26
typeConfigstruct {
27
-
Serversmap[string]*ServerConfig`toml:"servers"`
28
-
EnableDIFCbool`toml:"enable_difc"`// When true, enables DIFC enforcement and requires sys___init call before tool access. Default is false for standard MCP client compatibility.
29
-
Gateway*GatewayConfig`toml:"gateway"`// Gateway configuration (port, API key, etc.)
27
+
Serversmap[string]*ServerConfig`toml:"servers"`
28
+
EnableDIFCbool`toml:"enable_difc"`// When true, enables DIFC enforcement and requires sys___init call before tool access. Default is false for standard MCP client compatibility.
29
+
ParallelLaunchbool`toml:"parallel_launch"`// When true (default), launches MCP servers in parallel during startup.
30
+
Gateway*GatewayConfig`toml:"gateway"`// Gateway configuration (port, API key, etc.)
0 commit comments