diff --git a/scripts/startup/bl_operators/wm.py b/scripts/startup/bl_operators/wm.py
index ba52d48f547..e43fe7ac1ab 100644
--- a/scripts/startup/bl_operators/wm.py
+++ b/scripts/startup/bl_operators/wm.py
@@ -1129,6 +1129,9 @@ class WM_OT_url_open_preset(Operator):
         (('BLENDER', iface_("blender.org"),
           tip_("Blender's official web-site")),
          "https://www.blender.org"),
+        (('MBLENDER', iface_("Mechanicalblender.org"),
+          tip_("Mechanical blender's official web-site")),
+         "https://www.mechanicalblender.org"),
         (('CREDITS', iface_("Credits"),
           tip_("Lists committers to Blender's source code")),
          "https://www.blender.org/about/credits/"),
@@ -3321,6 +3324,7 @@ class WM_MT_splash(Menu):
             col2.operator("wm.url_open", text="Support", icon='URL').url = "https://www.blender.org/support/"
             col2.operator("wm.url_open", text="User Communities", icon='URL').url = "https://www.blender.org/community/"
             col2.operator("wm.url_open_preset", text="Blender Website", icon='URL').type = 'BLENDER'
+            col2.operator("wm.url_open_preset", text="Mechanical Blender Website", icon='URL').type = 'MBLENDER'
 
         layout.separator()
 
diff --git a/source/blender/windowmanager/intern/wm_splash_screen.cc b/source/blender/windowmanager/intern/wm_splash_screen.cc
index 96eda527605..58b97f6a820 100644
--- a/source/blender/windowmanager/intern/wm_splash_screen.cc
+++ b/source/blender/windowmanager/intern/wm_splash_screen.cc
@@ -200,8 +200,12 @@ static uiBlock *wm_block_create_splash(bContext *C, ARegion *region, void * /*ar
                               BKE_blender_version_string(),
                               splash_width - 8.0 * UI_SCALE_FAC,
                               splash_height - 13.0 * UI_SCALE_FAC);
+	wm_block_splash_add_label(block,
+                              "Mechanical Blender",
+                              splash_width - 8.0 * UI_SCALE_FAC,
+                              splash_height - ((13.0 + 10)  * UI_SCALE_FAC));
   }
-
+ 
   const int layout_margin_x = UI_SCALE_FAC * 26;
   uiLayout *layout = UI_block_layout(block,
                                      UI_LAYOUT_VERTICAL,
