Skip to content

Commit 7e38de5

Browse files
authored
Merge pull request #1641 from SrinivasanTarget/main
Updated release notes for MCP Hyperexecute
2 parents 5070a6f + c101e66 commit 7e38de5

File tree

3 files changed

+203
-7
lines changed

3 files changed

+203
-7
lines changed
Lines changed: 165 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,165 @@
1+
---
2+
id: hyperexecute-mcp-server-release-notes
3+
title: Version 1.131.0
4+
hide_title: false
5+
sidebar_label: Version 1.131.0
6+
description: Version 1.131.0
7+
keywords:
8+
- LambdaTest Hyperexecute
9+
- LambdaTest Hyperexecute help
10+
- LambdaTest Hyperexecute documentation
11+
- FAQs
12+
url: https://www.lambdatest.com/support/docs/hyperexecute-mcp-server-release-notes/
13+
site_name: LambdaTest
14+
slug: hyperexecute-mcp-server-release-notes/
15+
---
16+
17+
<script type="application/ld+json"
18+
dangerouslySetInnerHTML={{ __html: JSON.stringify({
19+
"@context": "https://schema.org",
20+
"@type": "BreadcrumbList",
21+
"itemListElement": [{
22+
"@type": "ListItem",
23+
"position": 1,
24+
"name": "Home",
25+
"item": "https://www.lambdatest.com"
26+
},{
27+
"@type": "ListItem",
28+
"position": 2,
29+
"name": "Support",
30+
"item": "https://www.lambdatest.com/support/docs/"
31+
},{
32+
"@type": "ListItem",
33+
"position": 3,
34+
"name": "Version",
35+
"item": "https://www.lambdatest.com/support/docs/hyperexecute-mcp-server-release-notes/"
36+
}]
37+
})
38+
}}
39+
></script>
40+
41+
42+
# MCP LambdaTest Release Notes
43+
44+
## Version 1.0.0 - Major Release
45+
46+
### 🎉 What's New
47+
48+
#### Rebranding & Package Updates
49+
50+
- **MCP Hyperexecute** is now **MCP LambdaTest** to better reflect our expanded capabilities
51+
- Updated package name to `mcp-lambdatest` on NPM
52+
- Stable 1.0.0 release with comprehensive feature set
53+
54+
#### Transport Support
55+
56+
- **STDIO Transport**: Available via NPM package for local installations
57+
- **StreamableHTTP Transport**: Replaces deprecated SSE transport for remote connections
58+
- Enhanced connection reliability and performance
59+
60+
#### Enhanced Migration Tools
61+
62+
- Expanded migration capabilities for easier transition to LambdaTest platform
63+
- Improved app upload functionality for mobile testing
64+
- Resolved template loading and asset management for migration tools
65+
66+
#### Security & Reliability Improvements
67+
68+
- Enhanced authentication mechanisms
69+
- Improved credential handling and validation
70+
- Better security practices for remote connections
71+
- Fixed MCP resource loading issues for capabilities mapping and hooks executor
72+
- Updated webpack configuration to properly copy JSON assets during build process
73+
74+
### 🔧 Connection Configuration
75+
76+
#### ⚠️ Breaking Changes
77+
78+
The previous SSE-based connection method has been **removed**:
79+
80+
```
81+
❌ OLD (No longer supported):
82+
http://mcp.lambdatest.com/hyperexecute?&username=[your-lt-username]&accessKey=[your-lt-access-key]
83+
```
84+
85+
#### ✅ Connection Methods
86+
87+
**Option 1: Remote MCP Server (StreamableHTTP)**
88+
89+
```json
90+
{
91+
"mcpServers": {
92+
"mcp-lambdatest-remote": {
93+
"disabled": false,
94+
"timeout": 60,
95+
"command": "npx",
96+
"args": [
97+
"mcp-remote@latest",
98+
"https://mcp.lambdatest.com/mcp",
99+
"--header",
100+
"username:<LT_USERNAME>",
101+
"--header",
102+
"accessKey:<LT_ACCESSKEY>"
103+
],
104+
"transportType": "streamableHTTP"
105+
}
106+
}
107+
}
108+
```
109+
110+
**Option 2: Local STDIO Server (NPM Package)**
111+
112+
```json
113+
{
114+
"mcpServers": {
115+
"mcp-lambdatest-stdio": {
116+
"disabled": false,
117+
"timeout": 100,
118+
"command": "npx",
119+
"args": ["-y", "mcp-lambdatest", "--transport=stdio"],
120+
"env": {
121+
"LT_USERNAME": "<LT_USERNAME>",
122+
"LT_ACCESS_KEY": "<LT_ACCESSKEY>"
123+
},
124+
"transportType": "stdio"
125+
}
126+
}
127+
}
128+
```
129+
130+
### 🚀 Getting Started
131+
132+
1. **Choose your connection method** (Remote or Local STDIO)
133+
2. **Update your configuration** with the new format above
134+
3. **Replace credentials** with your LambdaTest username and access key
135+
4. **Verify connection** by asking your AI assistant to list available MCP tools
136+
5. **Start using** LambdaTest tools directly within your AI assistant
137+
138+
### 📋 Available Tools
139+
140+
#### HyperExecute Tools
141+
142+
- **generateHyperExecuteYAML**: Generate YAML configurations for your test projects
143+
- **answerHyperExecuteQuery**: Get answers from HyperExecute documentation
144+
- **getHyperExecuteJobInfo**: Fetch detailed job information
145+
- **getHyperExecuteJobSessions**: Retrieve job session details
146+
147+
#### Migration Tools
148+
149+
- **upload_app**: Upload mobile applications for testing
150+
151+
### 🔗 Compatibility
152+
153+
This release is compatible with:
154+
155+
- Cline (Claude Dev)
156+
- Any MCP-compatible AI assistant
157+
- Both local and remote deployment scenarios
158+
159+
### 📞 Support
160+
161+
For questions or issues with the connection methods, please refer to our documentation or contact LambdaTest support.
162+
163+
---
164+
165+
**Note**: Make sure to update your configurations to use the new connection methods as the old SSE-based approach is no longer supported.

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.

docs/hyperexecute-release-notes.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,10 @@ HyperExecute is an AI Native Test Orchestration Cloud Platform, enabling test au
178178
#### September, 2023
179179
| Release Number | Release Date |
180180
|----------------|--------------|
181-
| [Version 1.131.0](/support/docs/hyperexecute-release-notes-1-131-0) | Sept 24, 2023|
181+
| [Version 1.131.0](/support/docs/hyperexecute-release-notes-1-131-0) | Sept 24, 2023|
182+
183+
### MCP releases
184+
#### May, 2025
185+
| Release Number | Release Date |
186+
|----------------|--------------|
187+
| [Version 1.0.0](/support/docs/hyperexecute-mcp-server-release-notes) | May 28, 2025|

0 commit comments

Comments
 (0)