Versions in this module Expand all Collapse all v1 v1.2.2 Apr 26, 2026 v1.2.1 Apr 25, 2026 v1.2.0 Apr 24, 2026 v1.1.0 Apr 23, 2026 v1.0.6 Apr 23, 2026 v1.0.5 Apr 22, 2026 v1.0.4 Apr 22, 2026 v1.0.3 Apr 22, 2026 v1.0.2 Apr 21, 2026 v1.0.1 Apr 21, 2026 v1.0.0 Apr 21, 2026 Changes in this version + func DeleteFeatureFlag(ctx context.Context, client *gitlabclient.Client, input DeleteInput) error + func FormatFeatureFlagMarkdown(out Output) string + func FormatListFeatureFlagsMarkdown(out ListOutput) string + func RegisterMeta(server *mcp.Server, client *gitlabclient.Client) + func RegisterTools(server *mcp.Server, client *gitlabclient.Client) + type CreateInput struct + Active *bool + Description string + Name string + ProjectID toolutil.StringOrInt + Strategies string + Version string + type DeleteInput struct + Name string + ProjectID toolutil.StringOrInt + type GetInput struct + Name string + ProjectID toolutil.StringOrInt + type ListInput struct + ProjectID toolutil.StringOrInt + Scope string + type ListOutput struct + FeatureFlags []Output + Pagination toolutil.PaginationOutput + func ListFeatureFlags(ctx context.Context, client *gitlabclient.Client, input ListInput) (ListOutput, error) + type Output struct + Active bool + CreatedAt string + Description string + Name string + Strategies []StrategyOutput + UpdatedAt string + Version string + func CreateFeatureFlag(ctx context.Context, client *gitlabclient.Client, input CreateInput) (Output, error) + func GetFeatureFlag(ctx context.Context, client *gitlabclient.Client, input GetInput) (Output, error) + func UpdateFeatureFlag(ctx context.Context, client *gitlabclient.Client, input UpdateInput) (Output, error) + type ScopeInput struct + EnvironmentScope string + type ScopeOutput struct + EnvironmentScope string + ID int64 + type StrategyInput struct + ID int64 + Name string + Parameters *StrategyParameterInput + Scopes []ScopeInput + type StrategyOutput struct + ID int64 + Name string + Parameters *StrategyParameterOutput + Scopes []ScopeOutput + type StrategyParameterInput struct + GroupID string + Percentage string + Rollout string + Stickiness string + UserIDs string + type StrategyParameterOutput struct + GroupID string + Percentage string + Rollout string + Stickiness string + UserIDs string + type UpdateInput struct + Active *bool + Description string + Name string + NewName string + ProjectID toolutil.StringOrInt + Strategies string