From 36bb50ff93f3eed66102f944134c7a5e9dcc1d36 Mon Sep 17 00:00:00 2001 From: Coty Rosenblath Date: Mon, 9 Feb 2026 13:00:17 -0500 Subject: [PATCH] docs: add Katalon Studio setup instructions to README Add MCP client configuration section for Katalon StudioAssist, covering MCP proxy setup, server hosting, and HTTP connection details. Co-Authored-By: Claude Opus 4.6 --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 3061d9519..b03ee4407 100644 --- a/README.md +++ b/README.md @@ -266,6 +266,30 @@ Or, from the IDE **Activity Bar** > `Kiro` > `MCP Servers` > `Click Open MCP Con +
+ Katalon Studio + +The Chrome DevTools MCP server can be used with Katalon StudioAssist via an MCP proxy. + +**Step 1:** Install the MCP proxy by following the MCP proxy setup guide. + +**Step 2:** Start the Chrome DevTools MCP server with the proxy: + +```bash +mcp-proxy --transport streamablehttp --port 8080 -- npx -y chrome-devtools-mcp@latest +``` + +**Note:** You may need to pick another port if 8080 is already in use. + +**Step 3:** In Katalon Studio, add the server to StudioAssist with the following settings: + +- **Connection URL:** `http://127.0.0.1:8080/mcp` +- **Transport type:** `HTTP` + +Once connected, the Chrome DevTools MCP tools will be available in StudioAssist. + +
+
OpenCode