diff --git a/app/Http/Controllers/StartpageController.php b/app/Http/Controllers/StartpageController.php
index 5a047082707a5008bb5cde1548d7bd556617bacc..c1a92572b1be2a4ba33f5703d021c333a8f38d41 100644
--- a/app/Http/Controllers/StartpageController.php
+++ b/app/Http/Controllers/StartpageController.php
@@ -115,6 +115,7 @@ class StartpageController extends Controller
             view('plugin')
                 ->with('link', $link)
                 ->with('params', $params)
+                ->with('hostname', gethostname())
                 ->with('request', $request), "200");
         $response->header('Content-Type', "application/xml");
         return $response;
diff --git a/resources/views/plugin.blade.php b/resources/views/plugin.blade.php
index d5d0ec5f1bbf420328deb71122b31db5a0c6c810..f8d99357ccb957a487bf0add61eff1ee5d0ac10d 100644
--- a/resources/views/plugin.blade.php
+++ b/resources/views/plugin.blade.php
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/">
-        <ShortName>MetaGer</ShortName>
+        <ShortName>MetaGer ({{ $hostname }})</ShortName>
         <Description>{{ trans('plugin.description') }}</Description>
         <Contact>office@suma-ev.de</Contact>
         <Image width="16" height="16" type="image/x-icon">{{ url('/favicon.ico') }}</Image>