wingify-fme-mcp 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/LICENSE +202 -0
  3. package/NOTICE +18 -0
  4. package/README.md +223 -0
  5. package/dist/config/MCPConfig.js +24 -0
  6. package/dist/config/MCPConfig.js.map +1 -0
  7. package/dist/config/StatsigConfig.js +60 -0
  8. package/dist/config/StatsigConfig.js.map +1 -0
  9. package/dist/config/WingifyConfig.js +60 -0
  10. package/dist/config/WingifyConfig.js.map +1 -0
  11. package/dist/config/index.js +25 -0
  12. package/dist/config/index.js.map +1 -0
  13. package/dist/constants/StatsigSdkMigration.js +177 -0
  14. package/dist/constants/StatsigSdkMigration.js.map +1 -0
  15. package/dist/constants.js +113 -0
  16. package/dist/constants.js.map +1 -0
  17. package/dist/index.js +41 -0
  18. package/dist/index.js.map +1 -0
  19. package/dist/interfaces/Data360Interfaces.js +18 -0
  20. package/dist/interfaces/Data360Interfaces.js.map +1 -0
  21. package/dist/interfaces/FeatureFlagInterfaces.js +18 -0
  22. package/dist/interfaces/FeatureFlagInterfaces.js.map +1 -0
  23. package/dist/interfaces/SegmentInterfaces.js +18 -0
  24. package/dist/interfaces/SegmentInterfaces.js.map +1 -0
  25. package/dist/schema/AddWingifyRulesSchema.js +28 -0
  26. package/dist/schema/AddWingifyRulesSchema.js.map +1 -0
  27. package/dist/schema/CreateFeatureFlagRulesSchema.js +80 -0
  28. package/dist/schema/CreateFeatureFlagRulesSchema.js.map +1 -0
  29. package/dist/schema/CreateFeatureFlagSchema.js +54 -0
  30. package/dist/schema/CreateFeatureFlagSchema.js.map +1 -0
  31. package/dist/schema/CreateFeatureFlagWithDefaultsSchema.js +83 -0
  32. package/dist/schema/CreateFeatureFlagWithDefaultsSchema.js.map +1 -0
  33. package/dist/schema/DeleteFeatureFlagRuleSchema.js +25 -0
  34. package/dist/schema/DeleteFeatureFlagRuleSchema.js.map +1 -0
  35. package/dist/schema/DeleteFeatureFlagSchema.js +23 -0
  36. package/dist/schema/DeleteFeatureFlagSchema.js.map +1 -0
  37. package/dist/schema/FindStaleFeatureFlagsSchema.js +35 -0
  38. package/dist/schema/FindStaleFeatureFlagsSchema.js.map +1 -0
  39. package/dist/schema/GetAllFeatureGatesSchema.js +34 -0
  40. package/dist/schema/GetAllFeatureGatesSchema.js.map +1 -0
  41. package/dist/schema/GetAllStatsigMetricsSchema.js +40 -0
  42. package/dist/schema/GetAllStatsigMetricsSchema.js.map +1 -0
  43. package/dist/schema/GetEventsSchema.js +39 -0
  44. package/dist/schema/GetEventsSchema.js.map +1 -0
  45. package/dist/schema/GetFeatureFlagRuleSchema.js +29 -0
  46. package/dist/schema/GetFeatureFlagRuleSchema.js.map +1 -0
  47. package/dist/schema/GetFeatureFlagSchema.js +27 -0
  48. package/dist/schema/GetFeatureFlagSchema.js.map +1 -0
  49. package/dist/schema/GetMetricsSchema.js +26 -0
  50. package/dist/schema/GetMetricsSchema.js.map +1 -0
  51. package/dist/schema/IntegrateSDKSchema.js +26 -0
  52. package/dist/schema/IntegrateSDKSchema.js.map +1 -0
  53. package/dist/schema/ListFeatureFlagRulesSchema.js +30 -0
  54. package/dist/schema/ListFeatureFlagRulesSchema.js.map +1 -0
  55. package/dist/schema/ListFeatureFlagsSchema.js +28 -0
  56. package/dist/schema/ListFeatureFlagsSchema.js.map +1 -0
  57. package/dist/schema/ListProjectAndEnvironmentsSchema.js +24 -0
  58. package/dist/schema/ListProjectAndEnvironmentsSchema.js.map +1 -0
  59. package/dist/schema/MigrateAllSchema.js +32 -0
  60. package/dist/schema/MigrateAllSchema.js.map +1 -0
  61. package/dist/schema/MigrateDynamicConfigsSchema.js +27 -0
  62. package/dist/schema/MigrateDynamicConfigsSchema.js.map +1 -0
  63. package/dist/schema/MigrateExperimentsSchema.js +27 -0
  64. package/dist/schema/MigrateExperimentsSchema.js.map +1 -0
  65. package/dist/schema/MigrateFeatureGatesSchema.js +32 -0
  66. package/dist/schema/MigrateFeatureGatesSchema.js.map +1 -0
  67. package/dist/schema/MigrateParameterStoresSchema.js +27 -0
  68. package/dist/schema/MigrateParameterStoresSchema.js.map +1 -0
  69. package/dist/schema/MigrateStatsigMetricsSchema.js +27 -0
  70. package/dist/schema/MigrateStatsigMetricsSchema.js.map +1 -0
  71. package/dist/schema/ToggleFeatureFlagRulesSchema.js +34 -0
  72. package/dist/schema/ToggleFeatureFlagRulesSchema.js.map +1 -0
  73. package/dist/schema/ToggleFeatureFlagSchema.js +29 -0
  74. package/dist/schema/ToggleFeatureFlagSchema.js.map +1 -0
  75. package/dist/schema/UpdateFeatureFlagRuleSchema.js +47 -0
  76. package/dist/schema/UpdateFeatureFlagRuleSchema.js.map +1 -0
  77. package/dist/schema/UpdateFeatureFlagSchema.js +75 -0
  78. package/dist/schema/UpdateFeatureFlagSchema.js.map +1 -0
  79. package/dist/server.js +105 -0
  80. package/dist/server.js.map +1 -0
  81. package/dist/services/StatsigRestAPI.js +344 -0
  82. package/dist/services/StatsigRestAPI.js.map +1 -0
  83. package/dist/services/WingifyRestAPI.js +732 -0
  84. package/dist/services/WingifyRestAPI.js.map +1 -0
  85. package/dist/tools/BaseTool.js +52 -0
  86. package/dist/tools/BaseTool.js.map +1 -0
  87. package/dist/tools/events/GetEventsTool.js +47 -0
  88. package/dist/tools/events/GetEventsTool.js.map +1 -0
  89. package/dist/tools/feature-flag-rules/CreateFeatureFlagRulesTool.js +36 -0
  90. package/dist/tools/feature-flag-rules/CreateFeatureFlagRulesTool.js.map +1 -0
  91. package/dist/tools/feature-flag-rules/DeleteFeatureFlagRuleTool.js +40 -0
  92. package/dist/tools/feature-flag-rules/DeleteFeatureFlagRuleTool.js.map +1 -0
  93. package/dist/tools/feature-flag-rules/GetFeatureFlagRuleTool.js +41 -0
  94. package/dist/tools/feature-flag-rules/GetFeatureFlagRuleTool.js.map +1 -0
  95. package/dist/tools/feature-flag-rules/ListFeatureFlagRulesTool.js +41 -0
  96. package/dist/tools/feature-flag-rules/ListFeatureFlagRulesTool.js.map +1 -0
  97. package/dist/tools/feature-flag-rules/ToggleFeatureFlagRulesTool.js +41 -0
  98. package/dist/tools/feature-flag-rules/ToggleFeatureFlagRulesTool.js.map +1 -0
  99. package/dist/tools/feature-flag-rules/UpdateFeatureFlagRuleTool.js +41 -0
  100. package/dist/tools/feature-flag-rules/UpdateFeatureFlagRuleTool.js.map +1 -0
  101. package/dist/tools/feature-flags/CreateFeatureFlagTool.js +41 -0
  102. package/dist/tools/feature-flags/CreateFeatureFlagTool.js.map +1 -0
  103. package/dist/tools/feature-flags/CreateFeatureFlagWithDefaultsTool.js +70 -0
  104. package/dist/tools/feature-flags/CreateFeatureFlagWithDefaultsTool.js.map +1 -0
  105. package/dist/tools/feature-flags/DeleteFeatureFlagTool.js +40 -0
  106. package/dist/tools/feature-flags/DeleteFeatureFlagTool.js.map +1 -0
  107. package/dist/tools/feature-flags/FindStaleFeatureFlagsTool.js +37 -0
  108. package/dist/tools/feature-flags/FindStaleFeatureFlagsTool.js.map +1 -0
  109. package/dist/tools/feature-flags/GetFeatureFlagTool.js +41 -0
  110. package/dist/tools/feature-flags/GetFeatureFlagTool.js.map +1 -0
  111. package/dist/tools/feature-flags/IntegrateSDKTool.js +49 -0
  112. package/dist/tools/feature-flags/IntegrateSDKTool.js.map +1 -0
  113. package/dist/tools/feature-flags/ListFeatureFlagsTool.js +41 -0
  114. package/dist/tools/feature-flags/ListFeatureFlagsTool.js.map +1 -0
  115. package/dist/tools/feature-flags/ToggleFeatureFlagTool.js +41 -0
  116. package/dist/tools/feature-flags/ToggleFeatureFlagTool.js.map +1 -0
  117. package/dist/tools/feature-flags/UpdateFeatureFlagTool.js +41 -0
  118. package/dist/tools/feature-flags/UpdateFeatureFlagTool.js.map +1 -0
  119. package/dist/tools/fetch-ide-rules/AddWingifyRulesTool.js +47 -0
  120. package/dist/tools/fetch-ide-rules/AddWingifyRulesTool.js.map +1 -0
  121. package/dist/tools/index.js +73 -0
  122. package/dist/tools/index.js.map +1 -0
  123. package/dist/tools/metrics/GetMetricsTool.js +41 -0
  124. package/dist/tools/metrics/GetMetricsTool.js.map +1 -0
  125. package/dist/tools/projects-n-environments/ListProjectAndEnvironmentsTool.js +41 -0
  126. package/dist/tools/projects-n-environments/ListProjectAndEnvironmentsTool.js.map +1 -0
  127. package/dist/tools/statsig-migration/GetAllFeatureGatesTool.js +41 -0
  128. package/dist/tools/statsig-migration/GetAllFeatureGatesTool.js.map +1 -0
  129. package/dist/tools/statsig-migration/GetAllStatsigMetricsTool.js +64 -0
  130. package/dist/tools/statsig-migration/GetAllStatsigMetricsTool.js.map +1 -0
  131. package/dist/tools/statsig-migration/MigrateAllTool.js +86 -0
  132. package/dist/tools/statsig-migration/MigrateAllTool.js.map +1 -0
  133. package/dist/tools/statsig-migration/MigrateDynamicConfigsTool.js +296 -0
  134. package/dist/tools/statsig-migration/MigrateDynamicConfigsTool.js.map +1 -0
  135. package/dist/tools/statsig-migration/MigrateExperimentsTool.js +311 -0
  136. package/dist/tools/statsig-migration/MigrateExperimentsTool.js.map +1 -0
  137. package/dist/tools/statsig-migration/MigrateFeatureGatesTool.js +119 -0
  138. package/dist/tools/statsig-migration/MigrateFeatureGatesTool.js.map +1 -0
  139. package/dist/tools/statsig-migration/MigrateParameterStoresTool.js +111 -0
  140. package/dist/tools/statsig-migration/MigrateParameterStoresTool.js.map +1 -0
  141. package/dist/tools/statsig-migration/MigrateStatsigMetricsTool.js +130 -0
  142. package/dist/tools/statsig-migration/MigrateStatsigMetricsTool.js.map +1 -0
  143. package/dist/utils/GetDocumentationData.js +203 -0
  144. package/dist/utils/GetDocumentationData.js.map +1 -0
  145. package/dist/utils/GetWingifyFeatureFlagUrl.js +37 -0
  146. package/dist/utils/GetWingifyFeatureFlagUrl.js.map +1 -0
  147. package/dist/utils/MigrationDelay.js +83 -0
  148. package/dist/utils/MigrationDelay.js.map +1 -0
  149. package/dist/utils/ResponseMessages.js +482 -0
  150. package/dist/utils/ResponseMessages.js.map +1 -0
  151. package/dist/utils/StatsigExperimentMetricResolver.js +158 -0
  152. package/dist/utils/StatsigExperimentMetricResolver.js.map +1 -0
  153. package/dist/utils/StatsigMapper.js +664 -0
  154. package/dist/utils/StatsigMapper.js.map +1 -0
  155. package/dist/utils/StatsigMetricMapper.js +352 -0
  156. package/dist/utils/StatsigMetricMapper.js.map +1 -0
  157. package/dist/utils/TechDebtUtil.js +157 -0
  158. package/dist/utils/TechDebtUtil.js.map +1 -0
  159. package/dist/utils/ToolResponse.js +53 -0
  160. package/dist/utils/ToolResponse.js.map +1 -0
  161. package/dist/utils/WriteIDERulesUtil.js +119 -0
  162. package/dist/utils/WriteIDERulesUtil.js.map +1 -0
  163. package/package.json +69 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,39 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [1.10.0] - 2026-07-07
9
+
10
+ ### Added
11
+
12
+ - Added Statsig-to-Wingify migration tools: `MigrateAllStatsigToWingify`, `MigrateFeatureGates`, `MigrateDynamicConfigs`, `MigrateExperiments`, `MigrateParameterStores`, and `MigrateStatsigMetrics` for migrating feature gates, dynamic configs, experiments, parameter stores, and metrics from the Statsig Console API.
13
+ - Added `GetAllFeatureGates` and `GetAllStatsigMetrics` tools to list Statsig entities before migration.
14
+ - Added `GetEvents` tool to list Wingify Data360 events, with optional filtering to custom events only.
15
+ - Added IDE rules for Statsig-to-Wingify console migration (`statsig-to-wingify-migration-mcp-rules`) and application SDK migration (`statsig-to-wingify-sdk-migration`).
16
+ - Added agent skill at `skills/wingify-fe-mcp` with MCP server reference docs and per-platform SDK migration guides (JavaScript, Node, React, Python, Java, Go, and others).
17
+
18
+ ### Changed
19
+
20
+ - Renamed package from `vwo-fme-mcp` to `wingify-fme-mcp` and updated user-facing branding from VWO to Wingify FE (Feature Experimentation).
21
+ - Environment variables now use `WINGIFY_ACCOUNT_ID`, `WINGIFY_API_KEY`, and `WINGIFY_API_BASE_URL`; legacy `VWO_*` variables are still supported as fallbacks.
22
+ - Renamed `AddVWORules` tool to `AddWingifyRules` and `VWORestAPI` to `WingifyRestAPI`.
23
+
24
+
25
+ ## [1.1.0] - 2025-07-08
26
+
27
+ ### Added
28
+
29
+ - Added `CreateFeatureFlagWithDefaults` tool for creating complete feature flags with variations, rules, and automatic enablement in one step.
30
+ - Added support to find stale feature flags in codebase using `FindStaleFeatureFlags` tool.
31
+ - SDK integration can now work without cursor rule files using `IntegrateWingifySDK` tool.
32
+ - Extended `AddWingifyRules` tool to support both Cursor IDE and VS Code rule generation.
33
+
34
+ ## [1.0.0] - 2025-06-06
35
+
36
+ ### Added
37
+
38
+ - First release of MCP Server for Wingify Feature Management and Experimentation
39
+ - For more details, please check out the [README.md](https://github.com/wingify/wingify-fme-mcp/blob/master/README.md)
package/LICENSE ADDED
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright 2025-2026 Wingify Software Pvt. Ltd.
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
package/NOTICE ADDED
@@ -0,0 +1,18 @@
1
+ Copyright 2025-2026 Wingify Software Pvt. Ltd.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
14
+
15
+ Wingify FE (Feature Experimentation) MCP Server
16
+
17
+ This product includes software developed at
18
+ Wingify Software Pvt. Ltd. (https://wingify.com/).
package/README.md ADDED
@@ -0,0 +1,223 @@
1
+ # MCP Server for Wingify Feature Experimentation (FE)
2
+
3
+ [![npm version](https://img.shields.io/npm/v/wingify-fme-mcp?style=for-the-badge&color=green&logo=npm)](https://www.npmjs.com/package/wingify-fme-mcp)
4
+ [![License](https://img.shields.io/github/license/wingify/wingify-fme-mcp?style=for-the-badge&color=blue)](http://www.apache.org/licenses/LICENSE-2.0)
5
+
6
+ ## Overview
7
+
8
+ The Wingify FE (Feature Experimentation) MCP Server empowers developers to manage feature flags effortlessly within their AI coding environment. By integrating Wingify’s robust feature management platform with AI development tools, it enables seamless creation, modification, and control of feature flags—streamlining workflows and accelerating feature delivery.
9
+
10
+ For product and SDK documentation, see the [Wingify Feature Experimentation overview](https://developers.wingify.com/v3/docs/fme-overview).
11
+ <br>
12
+
13
+ > You can add the Wingify FE (Feature Experimentation) MCP Server by clicking the button below. Make sure to update the `WINGIFY_ACCOUNT_ID` and `WINGIFY_API_KEY` environment variables before you start using it.
14
+
15
+ <a href="https://cursor.com/install-mcp?name=wingify-fme-mcp&config=eyJjb21tYW5kIjoibnB4IC15IHdpbmdpZnktZm1lLW1jcEBsYXRlc3QiLCJlbnYiOnsiV0lOR0lGWV9BQ0NPVU5UX0lEIjoiV0lOR0lGWV9BQ0NPVU5UX0lEIiwiV0lOR0lGWV9BUElfS0VZIjoiV0lOR0lGWV9BUElfS0VZIn19" target="_blank">
16
+ <img src="https://cursor.com/deeplink/mcp-install-dark.svg" alt="Add wingify-fme-mcp MCP server to Cursor" width="170" height="40" />
17
+ </a>
18
+
19
+ ---
20
+
21
+ ### Key Features
22
+
23
+ - **Seamless AI Assistant Integration**: Compatible with Cursor, VS Code, and Claude
24
+ - **Comprehensive Feature Flag Management**: Easily create, view, list, update, and delete feature flags
25
+ - **Environment-Specific Controls**: Toggle features on or off across different environments
26
+ - **Cursor Rule Setup**: Bootstrapping simplifies the configuration of Cursor rules to deliver contextual results and integrate with the SDK
27
+ -
28
+
29
+ This tool helps developers save time by managing feature flags right where they code, without switching between different tools.
30
+
31
+ ### Required Configuration
32
+
33
+ To use the MCP server, you need to configure two mandatory environment variables:
34
+
35
+ - `WINGIFY_ACCOUNT_ID`: Your Wingify Account ID.
36
+ - `WINGIFY_API_KEY`: Your Wingify API Key (Developers Token) for interacting with RESTful APIs
37
+
38
+ These credentials are required to authenticate and connect with the Wingify feature management system.
39
+
40
+ > **Legacy env vars:** `VWO_ACCOUNT_ID`, `VWO_API_KEY`, and `VWO_API_BASE_URL` are still read as fallbacks if the `WINGIFY_*` variables are unset.
41
+
42
+ ## How to Connect the MCP Server to Your Client
43
+
44
+ You can use the Wingify FE MCP server with any client that supports the MCP protocol. Below are step-by-step guides for popular tools. Be sure to replace `WINGIFY_ACCOUNT_ID` and `WINGIFY_API_KEY` with your actual Wingify account ID and API key.
45
+
46
+ ### Cursor
47
+
48
+ 1. Go to **Cursor Settings** and select the **MCP** section.
49
+ 2. Click on **Add new global MCP server**.
50
+ 3. When prompted, enter the following configuration (make sure to use your real credentials):
51
+
52
+ ```json
53
+ {
54
+ "mcpServers": {
55
+ "wingify-fme": {
56
+ "command": "npx",
57
+ "args": ["-y", "wingify-fme-mcp@latest"],
58
+ "env": {
59
+ "WINGIFY_ACCOUNT_ID": "WINGIFY_ACCOUNT_ID",
60
+ "WINGIFY_API_KEY": "WINGIFY_API_KEY"
61
+ }
62
+ }
63
+ }
64
+ }
65
+ ```
66
+
67
+ <img src="./assets/gifs/VWO_Cursor_MCP .gif" />
68
+
69
+ 4. Save your changes. If everything is set up correctly, you should see a green status indicator showing the server is active.
70
+
71
+ ---
72
+
73
+ ### VS Code
74
+
75
+ 1. Open your **User Settings (JSON)** in VS Code.
76
+ 2. Add or update the MCP server configuration as shown below:
77
+
78
+ ```json
79
+ "mcp": {
80
+ "servers": {
81
+ "wingify-fme": {
82
+ "command": "npx",
83
+ "args": ["-y", "wingify-fme-mcp@latest"],
84
+ "env": {
85
+ "WINGIFY_ACCOUNT_ID": "WINGIFY_ACCOUNT_ID",
86
+ "WINGIFY_API_KEY": "WINGIFY_API_KEY"
87
+ }
88
+ }
89
+ }
90
+ }
91
+ ```
92
+
93
+ <img src="./assets/gifs/VWO_VS_Code_MCP.gif" />
94
+
95
+ 3. Save the settings file. The MCP server should now be available in VS Code.
96
+
97
+ ---
98
+
99
+ ### Claude Desktop
100
+
101
+ 1. Open the **Settings** menu and go to the **Developer** section.
102
+ 2. Click **Edit Config** to open your `claude_desktop_config.json` file.
103
+ 3. Add the following block to your configuration (replace the placeholders with your actual credentials):
104
+
105
+ ```json
106
+ {
107
+ "mcpServers": {
108
+ "wingify-fme": {
109
+ "command": "npx",
110
+ "args": ["-y", "wingify-fme-mcp@latest"],
111
+ "env": {
112
+ "WINGIFY_ACCOUNT_ID": "WINGIFY_ACCOUNT_ID",
113
+ "WINGIFY_API_KEY": "WINGIFY_API_KEY"
114
+ }
115
+ }
116
+ }
117
+ }
118
+ ```
119
+
120
+ 4. Save the file and restart Claude Desktop. Once connected, you should see a hammer icon in the chat window, confirming the MCP server is active.
121
+
122
+ <img src="./assets/gifs/VWO_Claude_MCP.gif" />
123
+
124
+ ---
125
+
126
+ If you use a different client, refer to its documentation for how to add a custom MCP server. The configuration pattern will be similar to the examples above.
127
+
128
+ ## Available Tools
129
+
130
+ Here's what you can do with our feature flag management tools:
131
+
132
+ ### IDE Configuration with Wingify
133
+
134
+ 1. **Add Wingify FE Rules** - Retrieve IDE rules and configuration settings to seamlessly manage feature flags within your project. This enables smooth integration with your SDK and leverages Wingify's feature management capabilities.
135
+
136
+ 📝**Note**: Supports both Cursor IDE and VS Code. The tool automatically detects your IDE or you can specify it manually. Needs to be called once after setting up the Wingify FE MCP server.
137
+
138
+ - **Cursor IDE**: Creates rules in `.cursor/rules/wingify-feature-flag-rule.mdc`
139
+ - **VS Code**: Creates instructions in `.github/instructions/wingify-fe.instructions.md`
140
+
141
+ ### Feature Flags
142
+
143
+ 1. **Create Feature Flag With Defaults** - Create a complete feature flag with variables, variations, associated metric, rules, and automatic enablement. This tool handles the entire setup process.
144
+
145
+ 2. **Create Feature Flag** - Create a new feature flag into your Wingify account with mandatory requirements like variables, variations and metrics.
146
+
147
+ 3. **Delete Feature Flag** - Safely remove any feature flag from your account when it's no longer needed.
148
+
149
+ 4. **Get Feature Flag** - Dive into the details of any feature flag to see its current configuration and status.
150
+
151
+ 5. **List Feature Flags** - Get a bird's-eye view of all your feature flags in one place.
152
+
153
+ 6. **Update Feature Flag** - Fine-tune your feature flags by modifying their properties, metrics, and variations.
154
+
155
+ 7. **Toggle Feature Flag** - Instantly enable or disable feature flags in different environments with a single click.
156
+
157
+ 8. **Find Stale Feature Flags** - Identify unused or stale feature flags in your codebase by scanning your source code and comparing against active feature flags. This helps maintain clean code by finding feature flags that are no longer referenced in your project.
158
+
159
+ 9. **Integrate SDK** - Get comprehensive SDK integration documentation and code examples for seamless feature flag implementation in your project. This tool provides language-specific integration guides without requiring Cursor rule files.
160
+
161
+ ### Feature Flag Rules
162
+
163
+ 1. **List Feature Flag Rules** - View all rules associated with your feature flags.
164
+
165
+ 2. **Create Rollout and Personalize Rule** - Set up rules for gradual rollout or personalization of your features.
166
+
167
+ 3. **Create Testing and MVT Rule** - Configure rules for A/B testing or multivariate testing.
168
+
169
+ 4. **Get Feature Flag Rule** - Examine the details of a specific feature flag rule.
170
+
171
+ 5. **Toggle Feature Flag Rule** - Enable or disable specific rules for your feature flags.
172
+
173
+ 6. **Update Feature Flag Rules** - Modify existing feature flag rules to change their configuration or targeting.
174
+
175
+ 7. **Delete Feature Flag Rule** - Remove unwanted rules from your feature flags.
176
+
177
+ ### Projects and Environments
178
+
179
+ 1. **List Projects and Environments** - See all your projects and their associated environments.
180
+
181
+ ### Metrics
182
+
183
+ 1. **Get Metrics** - Access metrics for your feature flags and experiments.
184
+
185
+ ## Requirements
186
+
187
+ - **Node.js v12 or later**
188
+
189
+ ### Version History
190
+
191
+ The version history tracks changes, improvements, and bug fixes in each version. For a full history, see the [CHANGELOG.md](https://github.com/wingify/wingify-fme-mcp/blob/master/CHANGELOG.md).
192
+
193
+ ## Development and Testing
194
+
195
+ ### Install Dependencies and Bootstrap Git Hooks
196
+
197
+ ```bash
198
+ npm install
199
+ # or
200
+ yarn install
201
+ ```
202
+
203
+ ### Compile TypeScript to JavaScript
204
+
205
+ ```bash
206
+ npm run build
207
+ # or
208
+ yarn run build
209
+ ```
210
+
211
+ ## Contributing
212
+
213
+ We welcome contributions to improve this SDK! Please read our [contributing guidelines](https://github.com/wingify/wingify-fme-mcp/blob/master/CONTRIBUTING.md) before submitting a PR.
214
+
215
+ ## Code of Conduct
216
+
217
+ Our [Code of Conduct](https://github.com/wingify/wingify-fme-mcp/blob/master/CODE_OF_CONDUCT.md) outlines expectations for all contributors and maintainers.
218
+
219
+ ## License
220
+
221
+ [Apache License, Version 2.0](https://github.com/wingify/wingify-fme-mcp/blob/master/LICENSE)
222
+
223
+ Copyright 2025-2026 Wingify Software Pvt. Ltd.
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MCPConfig = void 0;
4
+ /**
5
+ * Copyright 2025-2026 Wingify Software Pvt. Ltd.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ */
19
+ const packageJson = require('../../package.json');
20
+ exports.MCPConfig = {
21
+ name: packageJson.name,
22
+ version: packageJson.version,
23
+ };
24
+ //# sourceMappingURL=MCPConfig.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MCPConfig.js","sourceRoot":"","sources":["../../lib/config/MCPConfig.ts"],"names":[],"mappings":";;;AAAA;;;;;;;;;;;;;;GAcG;AACH,MAAM,WAAW,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;AAErC,QAAA,SAAS,GAAG;IACvB,IAAI,EAAE,WAAW,CAAC,IAAI;IACtB,OAAO,EAAE,WAAW,CAAC,OAAO;CAC7B,CAAC"}
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright 2025-2026 Wingify Software Pvt. Ltd.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || (function () {
34
+ var ownKeys = function(o) {
35
+ ownKeys = Object.getOwnPropertyNames || function (o) {
36
+ var ar = [];
37
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
38
+ return ar;
39
+ };
40
+ return ownKeys(o);
41
+ };
42
+ return function (mod) {
43
+ if (mod && mod.__esModule) return mod;
44
+ var result = {};
45
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
46
+ __setModuleDefault(result, mod);
47
+ return result;
48
+ };
49
+ })();
50
+ Object.defineProperty(exports, "__esModule", { value: true });
51
+ exports.StatsigConfig = void 0;
52
+ const dotenv = __importStar(require("dotenv"));
53
+ const constants_1 = require("../constants");
54
+ dotenv.config();
55
+ exports.StatsigConfig = {
56
+ apiKey: process.env.STATSIG_CONSOLE_API_KEY,
57
+ baseURL: process.env.STATSIG_CONSOLE_API_BASE_URL || constants_1.URL.STATSIG_CONSOLE_API,
58
+ apiVersion: constants_1.STATSIG.API_VERSION,
59
+ };
60
+ //# sourceMappingURL=StatsigConfig.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StatsigConfig.js","sourceRoot":"","sources":["../../lib/config/StatsigConfig.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,+CAAiC;AAEjC,4CAA4C;AAE5C,MAAM,CAAC,MAAM,EAAE,CAAC;AAEH,QAAA,aAAa,GAAG;IAC3B,MAAM,EAAE,OAAO,CAAC,GAAG,CAAC,uBAAuB;IAC3C,OAAO,EAAE,OAAO,CAAC,GAAG,CAAC,4BAA4B,IAAI,eAAG,CAAC,mBAAmB;IAC5E,UAAU,EAAE,mBAAO,CAAC,WAAW;CAChC,CAAC"}
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.WingifyConfig = void 0;
37
+ /**
38
+ * Copyright 2025-2026 Wingify Software Pvt. Ltd.
39
+ *
40
+ * Licensed under the Apache License, Version 2.0 (the "License");
41
+ * you may not use this file except in compliance with the License.
42
+ * You may obtain a copy of the License at
43
+ *
44
+ * http://www.apache.org/licenses/LICENSE-2.0
45
+ *
46
+ * Unless required by applicable law or agreed to in writing, software
47
+ * distributed under the License is distributed on an "AS IS" BASIS,
48
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
49
+ * See the License for the specific language governing permissions and
50
+ * limitations under the License.
51
+ */
52
+ const dotenv = __importStar(require("dotenv"));
53
+ const constants_1 = require("../constants");
54
+ dotenv.config();
55
+ exports.WingifyConfig = {
56
+ accountId: process.env.WINGIFY_ACCOUNT_ID || process.env.VWO_ACCOUNT_ID,
57
+ apiKey: process.env.WINGIFY_API_KEY || process.env.VWO_API_KEY,
58
+ baseURL: process.env.WINGIFY_API_BASE_URL || process.env.VWO_API_BASE_URL || constants_1.URL.WINGIFY_API,
59
+ };
60
+ //# sourceMappingURL=WingifyConfig.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WingifyConfig.js","sourceRoot":"","sources":["../../lib/config/WingifyConfig.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;;;;GAcG;AACH,+CAAiC;AAEjC,4CAAmC;AAEnC,MAAM,CAAC,MAAM,EAAE,CAAC;AAEH,QAAA,aAAa,GAAG;IAC3B,SAAS,EAAE,OAAO,CAAC,GAAG,CAAC,kBAAkB,IAAI,OAAO,CAAC,GAAG,CAAC,cAAc;IACvE,MAAM,EAAE,OAAO,CAAC,GAAG,CAAC,eAAe,IAAI,OAAO,CAAC,GAAG,CAAC,WAAW;IAC9D,OAAO,EAAE,OAAO,CAAC,GAAG,CAAC,oBAAoB,IAAI,OAAO,CAAC,GAAG,CAAC,gBAAgB,IAAI,eAAG,CAAC,WAAW;CAC7F,CAAC"}
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StatsigConfig = exports.WingifyConfig = exports.MCPConfig = void 0;
4
+ /**
5
+ * Copyright 2025-2026 Wingify Software Pvt. Ltd.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ */
19
+ var MCPConfig_1 = require("./MCPConfig");
20
+ Object.defineProperty(exports, "MCPConfig", { enumerable: true, get: function () { return MCPConfig_1.MCPConfig; } });
21
+ var WingifyConfig_1 = require("./WingifyConfig");
22
+ Object.defineProperty(exports, "WingifyConfig", { enumerable: true, get: function () { return WingifyConfig_1.WingifyConfig; } });
23
+ var StatsigConfig_1 = require("./StatsigConfig");
24
+ Object.defineProperty(exports, "StatsigConfig", { enumerable: true, get: function () { return StatsigConfig_1.StatsigConfig; } });
25
+ //# sourceMappingURL=index.js.map