You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/hyperexecute-mcp-server.md
+31-6Lines changed: 31 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@ import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/co
43
43
></script>
44
44
45
45
# Getting Started with HyperExecute MCP Server
46
+
46
47
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.
47
48
48
49
## Watch HyperExecute MCP in Action
@@ -74,6 +75,7 @@ Here are the key benefits of using HyperExecute MCP Server:
74
75
## Connecting to HyperExecute MCP Server
75
76
76
77
### Connecting with Cline
78
+
77
79
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.
78
80
79
81
#### Installing Cline in VS Code:
@@ -82,7 +84,7 @@ Cline (The Collaborative AI Coder) is an advanced AI-powered coding assistant th
82
84
**Step 2:** Click on the Extensions icon in the Activity Bar on the side of the window (or press `Ctrl+Shift+X`).<br />
83
85
**Step 3:** Search for **Cline** in the Extensions Marketplace.
**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
+
```
99
125
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 />
102
126
**Step 5:** Replace [your-lt-username] and [your-lt-access-key] with your LambdaTest credentials. <br />
0 commit comments