diff --git a/wax-questions-service/README.md b/wax-questions-service/README.md
index 372e3c81f6c36899e08e6f72da524c5bce8923ba..b00db39ffb248ee80e0f8ed3f35533bd7338eff9 100644
--- a/wax-questions-service/README.md
+++ b/wax-questions-service/README.md
@@ -1,4 +1,3 @@
-
 ## Wax questions package
 
 1. Multiple Choice and single correct variant
@@ -14,3 +13,39 @@
 6. Fill in the blank
 
 ## How to use
+
+### Editor's config
+
+```
+import { QuestionsService } from 'wax-questions-service';
+```
+
+### Tools
+
+```
+MenuService: [
+    {
+      templateArea: 'mainMenuToolBar',
+      toolGroups: [
+        'QuestionsDropDown',
+      ],
+    },
+    {
+      templateArea: 'fillTheGap',
+      toolGroups: ['FillTheGap'],
+    },
+    {
+      templateArea: 'MultipleDropDown',
+      toolGroups: ['MultipleDropDown'],
+    },
+  ],
+
+```
+
+### Start the Service
+
+```
+ services: [
+    new QuestionsService(),
+  ]
+```