Skip to content

Commit 9d7b9c0

Browse files
Updated MCP Configuration for Hyperexecute
Co-authored-by: SrinivasanTarget <[email protected]>
1 parent 5070a6f commit 9d7b9c0

File tree

1 file changed

+31
-6
lines changed

1 file changed

+31
-6
lines changed

docs/hyperexecute-mcp-server.md

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/co
4343
></script>
4444

4545
# Getting Started with HyperExecute MCP Server
46+
4647
HyperExecute MCP Server is an AI-native test orchestration platform that dramatically simplifies and accelerates your automated testing workflow. By leveraging the Model Context Protocol (MCP), it enables seamless integration between AI assistants and your testing environment, reducing setup time from hours to minutes.
4748

4849
## Watch HyperExecute MCP in Action​
@@ -74,6 +75,7 @@ Here are the key benefits of using HyperExecute MCP Server:
7475
## Connecting to HyperExecute MCP Server
7576

7677
### Connecting with Cline
78+
7779
Cline (The Collaborative AI Coder) is an advanced AI-powered coding assistant that integrates directly into your development workflow. It provides intelligent code suggestions and documentation assistance, and now, with MCP support, you can interface with external tools like HyperExecute to enhance your testing capabilities. Cline offers natural language interactions with your codebase, allowing you to simply describe what you need rather than manually configuring everything.
7880

7981
#### Installing Cline in VS Code:
@@ -82,7 +84,7 @@ Cline (The Collaborative AI Coder) is an advanced AI-powered coding assistant th
8284
**Step 2:** Click on the Extensions icon in the Activity Bar on the side of the window (or press `Ctrl+Shift+X`).<br />
8385
**Step 3:** Search for **Cline** in the Extensions Marketplace.
8486

85-
<img loading="lazy" src={require('../assets/images/hyperexecute-mcp/installing-cline.webp').default} alt="automation-dashboard" width="1920" height="868" className="doc_img"/>
87+
<img loading="lazy" src={require('../assets/images/hyperexecute-mcp/installing-cline.webp').default} alt="automation-dashboard" width="1920" height="868" className="doc_img"/>
8688

8789
**Step 4:** Click **Install** on the Cline – The Collaborative AI Coder extension.<br />
8890
**Step 5:** Once installed, you'll see the Cline icon in your VS Code sidebar.<br />
@@ -95,14 +97,36 @@ Cline (The Collaborative AI Coder) is an advanced AI-powered coding assistant th
9597

9698
**Step 1:** In VS Code, click on the Cline icon in the sidebar to open the Cline panel.<br />
9799
**Step 2:** Under the **MCP Servers** section, click **Remote Servers**.
98-
<img loading="lazy" src={require('../assets/images/hyperexecute-mcp/vs-code-config.webp').default} alt="automation-dashboard" width="1920" height="868" className="doc_img"/>
100+
<img loading="lazy" src={require('../assets/images/hyperexecute-mcp/vs-code-config.webp').default} alt="automation-dashboard" width="1920" height="868" className="doc_img"/>
101+
102+
**Step 3:** Click on **Edit Configuration**.<br />
103+
**Step 4:** Enter the following server configiration
104+
105+
```json
106+
{
107+
"mcpServers": {
108+
"mcp-hyper-stage": {
109+
"disabled": false,
110+
"timeout": 60,
111+
"command": "npx",
112+
"args": [
113+
"mcp-remote@latest",
114+
"https://mcp.lambdatest.com/mcp",
115+
"--header",
116+
"username:<LT_USERNAME>",
117+
"--header",
118+
"accessKey:<LT_ACCESSKEY>"
119+
],
120+
"transportType": "streamableHTTP"
121+
}
122+
}
123+
}
124+
```
99125

100-
**Step 3:** Add Server Name as **MCP-HyperExecute**.<br />
101-
**Step 4:** Enter the following URL in the server URL field: `http://mcp.lambdatest.com/hyperexecute?&username=[your-lt-username]&accessKey=[your-lt-access-key]` <br />
102126
**Step 5:** Replace [your-lt-username] and [your-lt-access-key] with your LambdaTest credentials. <br />
103-
**Step 6:** Click on **Add Server**.
127+
**Step 6:** Click on **Add Server**.
104128

105-
<img loading="lazy" src={require('../assets/images/hyperexecute-mcp/mcp-add-server.webp').default} alt="automation-dashboard" width="1920" height="868" className="doc_img"/>
129+
<img loading="lazy" src={require('../assets/images/hyperexecute-mcp/mcp-add-server.webp').default} alt="automation-dashboard" width="1920" height="868" className="doc_img"/>
106130

107131
### Interacting with HyperExecute MCP Server
108132

@@ -112,6 +136,7 @@ Once connected, you can start using Cline to interact with the HyperExecute MCP
112136
**Step 2:** Open the Cline panel.<br />
113137
**Step 3:** Type the following prompt: `Analyze the project and create a HyperExecute YAML file using MCP HyperExecute server.`<br />
114138
**Step 4:** Cline will:
139+
115140
- analyze your project structure.
116141
- Identify your testing framework and test files.
117142
- Generate appropriate test runner commands.

0 commit comments

Comments
 (0)