diff --git a/install_postman.sh b/install_postman.sh
new file mode 100755
index 0000000..c0376e0
--- /dev/null
+++ b/install_postman.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+# Download the latest Postman tarball
+wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz
+
+# Extract to /opt directory
+sudo tar -xzf postman.tar.gz -C /opt
+
+# Create a symbolic link to make Postman accessible globally
+sudo ln -s /opt/Postman/Postman /usr/local/bin/postman
+
+# Clean up the tarball
+rm postman.tar.gz
+
+echo "Postman installed successfully!"
+
diff --git a/package_list.json b/package_list.json
index 25c0fa1..6290645 100644
--- a/package_list.json
+++ b/package_list.json
@@ -183,7 +183,11 @@
         "script": "jupyter-codio-extension",
         "version": "1.0.0",
         "category": "IDE"
+      },
+      "mysql_postman_stack": {
+        "name": "MySQL with Postman",
+        "description": "A stack that includes MySQL and the Postman desktop app for API testing",
+        "scripts": ["mysql", "install_postman.sh"]
       }
-
    }
 }