diff --git a/docs/hyperexecute-mcp-server-release-notes.md b/docs/hyperexecute-mcp-server-release-notes.md new file mode 100644 index 000000000..0804a1bb5 --- /dev/null +++ b/docs/hyperexecute-mcp-server-release-notes.md @@ -0,0 +1,165 @@ +--- +id: hyperexecute-mcp-server-release-notes +title: Version 1.131.0 +hide_title: false +sidebar_label: Version 1.131.0 +description: Version 1.131.0 +keywords: + - LambdaTest Hyperexecute + - LambdaTest Hyperexecute help + - LambdaTest Hyperexecute documentation + - FAQs +url: https://www.lambdatest.com/support/docs/hyperexecute-mcp-server-release-notes/ +site_name: LambdaTest +slug: hyperexecute-mcp-server-release-notes/ +--- + + + + +# MCP LambdaTest Release Notes + +## Version 1.0.0 - Major Release + +### πŸŽ‰ What's New + +#### Rebranding & Package Updates + +- **MCP Hyperexecute** is now **MCP LambdaTest** to better reflect our expanded capabilities +- Updated package name to `mcp-lambdatest` on NPM +- Stable 1.0.0 release with comprehensive feature set + +#### Transport Support + +- **STDIO Transport**: Available via NPM package for local installations +- **StreamableHTTP Transport**: Replaces deprecated SSE transport for remote connections +- Enhanced connection reliability and performance + +#### Enhanced Migration Tools + +- Expanded migration capabilities for easier transition to LambdaTest platform +- Improved app upload functionality for mobile testing +- Resolved template loading and asset management for migration tools + +#### Security & Reliability Improvements + +- Enhanced authentication mechanisms +- Improved credential handling and validation +- Better security practices for remote connections +- Fixed MCP resource loading issues for capabilities mapping and hooks executor +- Updated webpack configuration to properly copy JSON assets during build process + +### πŸ”§ Connection Configuration + +#### ⚠️ Breaking Changes + +The previous SSE-based connection method has been **removed**: + +``` +❌ OLD (No longer supported): +http://mcp.lambdatest.com/hyperexecute?&username=[your-lt-username]&accessKey=[your-lt-access-key] +``` + +#### βœ… Connection Methods + +**Option 1: Remote MCP Server (StreamableHTTP)** + +```json +{ + "mcpServers": { + "mcp-lambdatest-remote": { + "disabled": false, + "timeout": 60, + "command": "npx", + "args": [ + "mcp-remote@latest", + "https://mcp.lambdatest.com/mcp", + "--header", + "username:", + "--header", + "accessKey:" + ], + "transportType": "streamableHTTP" + } + } +} +``` + +**Option 2: Local STDIO Server (NPM Package)** + +```json +{ + "mcpServers": { + "mcp-lambdatest-stdio": { + "disabled": false, + "timeout": 100, + "command": "npx", + "args": ["-y", "mcp-lambdatest", "--transport=stdio"], + "env": { + "LT_USERNAME": "", + "LT_ACCESS_KEY": "" + }, + "transportType": "stdio" + } + } +} +``` + +### πŸš€ Getting Started + +1. **Choose your connection method** (Remote or Local STDIO) +2. **Update your configuration** with the new format above +3. **Replace credentials** with your LambdaTest username and access key +4. **Verify connection** by asking your AI assistant to list available MCP tools +5. **Start using** LambdaTest tools directly within your AI assistant + +### πŸ“‹ Available Tools + +#### HyperExecute Tools + +- **generateHyperExecuteYAML**: Generate YAML configurations for your test projects +- **answerHyperExecuteQuery**: Get answers from HyperExecute documentation +- **getHyperExecuteJobInfo**: Fetch detailed job information +- **getHyperExecuteJobSessions**: Retrieve job session details + +#### Migration Tools + +- **upload_app**: Upload mobile applications for testing + +### πŸ”— Compatibility + +This release is compatible with: + +- Cline (Claude Dev) +- Any MCP-compatible AI assistant +- Both local and remote deployment scenarios + +### πŸ“ž Support + +For questions or issues with the connection methods, please refer to our documentation or contact LambdaTest support. + +--- + +**Note**: Make sure to update your configurations to use the new connection methods as the old SSE-based approach is no longer supported. diff --git a/docs/hyperexecute-mcp-server.md b/docs/hyperexecute-mcp-server.md index d3afb6f9e..c090dff12 100644 --- a/docs/hyperexecute-mcp-server.md +++ b/docs/hyperexecute-mcp-server.md @@ -43,6 +43,7 @@ import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/co > # Getting Started with HyperExecute MCP Server + 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. ## Watch HyperExecute MCP in Action​ @@ -74,6 +75,7 @@ Here are the key benefits of using HyperExecute MCP Server: ## Connecting to HyperExecute MCP Server ### Connecting with Cline + 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. #### Installing Cline in VS Code: @@ -82,7 +84,7 @@ Cline (The Collaborative AI Coder) is an advanced AI-powered coding assistant th **Step 2:** Click on the Extensions icon in the Activity Bar on the side of the window (or press `Ctrl+Shift+X`).
**Step 3:** Search for **Cline** in the Extensions Marketplace. -automation-dashboard +automation-dashboard **Step 4:** Click **Install** on the Cline – The Collaborative AI Coder extension.
**Step 5:** Once installed, you'll see the Cline icon in your VS Code sidebar.
@@ -95,14 +97,36 @@ Cline (The Collaborative AI Coder) is an advanced AI-powered coding assistant th **Step 1:** In VS Code, click on the Cline icon in the sidebar to open the Cline panel.
**Step 2:** Under the **MCP Servers** section, click **Remote Servers**. -automation-dashboard +automation-dashboard + +**Step 3:** Click on **Edit Configuration**.
+**Step 4:** Enter the following server configiration + +```json +{ + "mcpServers": { + "mcp-hyper-stage": { + "disabled": false, + "timeout": 60, + "command": "npx", + "args": [ + "mcp-remote@latest", + "https://mcp.lambdatest.com/mcp", + "--header", + "username:", + "--header", + "accessKey:" + ], + "transportType": "streamableHTTP" + } + } +} +``` -**Step 3:** Add Server Name as **MCP-HyperExecute**.
-**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]`
**Step 5:** Replace [your-lt-username] and [your-lt-access-key] with your LambdaTest credentials.
-**Step 6:** Click on **Add Server**. +**Step 6:** Click on **Add Server**. -automation-dashboard +automation-dashboard ### Interacting with HyperExecute MCP Server @@ -112,6 +136,7 @@ Once connected, you can start using Cline to interact with the HyperExecute MCP **Step 2:** Open the Cline panel.
**Step 3:** Type the following prompt: `Analyze the project and create a HyperExecute YAML file using MCP HyperExecute server.`
**Step 4:** Cline will: + - analyze your project structure. - Identify your testing framework and test files. - Generate appropriate test runner commands. diff --git a/docs/hyperexecute-release-notes.md b/docs/hyperexecute-release-notes.md index d869081be..54e765c98 100644 --- a/docs/hyperexecute-release-notes.md +++ b/docs/hyperexecute-release-notes.md @@ -178,4 +178,10 @@ HyperExecute is an AI Native Test Orchestration Cloud Platform, enabling test au #### September, 2023 | Release Number | Release Date | |----------------|--------------| -| [Version 1.131.0](/support/docs/hyperexecute-release-notes-1-131-0) | Sept 24, 2023| \ No newline at end of file +| [Version 1.131.0](/support/docs/hyperexecute-release-notes-1-131-0) | Sept 24, 2023| + +### MCP releases +#### May, 2025 +| Release Number | Release Date | +|----------------|--------------| +| [Version 1.0.0](/support/docs/hyperexecute-mcp-server-release-notes) | May 28, 2025| \ No newline at end of file