diff --git a/test/testclient.py b/test/testclient.py
new file mode 100644
index 0000000000000000000000000000000000000000..02dca7b45595a2d8a8296281e107188da2b724f3
--- /dev/null
+++ b/test/testclient.py
@@ -0,0 +1,14 @@
+# general
+from omnibot import run_dummybot
+                    
+if __name__ == '__main__':
+    # Server settings
+    HOST = "localhost"
+
+    if len(sys.argv) > 1:
+        # If an input is given to the script, it will be interpreted as the intended
+        # IP-address. Baseline is localhost.
+        HOST = sys.argv[1]
+    
+    print(f"HOST: \t {HOST}")
+    run_dummybot(HOST)
\ No newline at end of file