@@ -24,25 +24,6 @@ type HTTPServerConfig struct {
2424 // GitHub Host to target for API requests (e.g. github.com or github.enterprise.com)
2525 Host string
2626
27- // EnabledToolsets is a list of toolsets to enable
28- // See: https://github.com/github/github-mcp-server?tab=readme-ov-file#tool-configuration
29- EnabledToolsets []string
30-
31- // EnabledTools is a list of specific tools to enable (additive to toolsets)
32- // When specified, these tools are registered in addition to any specified toolset tools
33- EnabledTools []string
34-
35- // EnabledFeatures is a list of feature flags that are enabled
36- // Items with FeatureFlagEnable matching an entry in this list will be available
37- EnabledFeatures []string
38-
39- // Whether to enable dynamic toolsets
40- // See: https://github.com/github/github-mcp-server?tab=readme-ov-file#dynamic-tool-discovery
41- DynamicToolsets bool
42-
43- // ReadOnly indicates if we should only register read-only tools
44- ReadOnly bool
45-
4627 // ExportTranslations indicates if we should export translations
4728 // See: https://github.com/github/github-mcp-server?tab=readme-ov-file#i18n--overriding-descriptions
4829 ExportTranslations bool
@@ -84,7 +65,7 @@ func RunHTTPServer(cfg HTTPServerConfig) error {
8465 slogHandler = slog .NewTextHandler (logOutput , & slog.HandlerOptions {Level : slog .LevelInfo })
8566 }
8667 logger := slog .New (slogHandler )
87- logger .Info ("starting server" , "version" , cfg .Version , "host" , cfg .Host , "dynamicToolsets" , cfg . DynamicToolsets , "readOnly" , cfg . ReadOnly , " lockdownEnabled" , cfg .LockdownMode )
68+ logger .Info ("starting server" , "version" , cfg .Version , "host" , cfg .Host , "lockdownEnabled" , cfg .LockdownMode )
8869
8970 apiHost , err := utils .ParseAPIHost (cfg .Host )
9071 if err != nil {
0 commit comments