diff --git a/docs/hyperexecute-mcp-server-release-notes-1-0-0.md b/docs/hyperexecute-mcp-server-release-notes-1-0-0.md new file mode 100644 index 00000000..f93b2055 --- /dev/null +++ b/docs/hyperexecute-mcp-server-release-notes-1-0-0.md @@ -0,0 +1,165 @@ +--- +id: hyperexecute-mcp-server-release-notes-1-0-0 +title: Version 1.0.0 +hide_title: false +sidebar_label: Version 1.0.0 +description: Version 1.0.0 +keywords: + - LambdaTest Hyperexecute + - LambdaTest Hyperexecute help + - LambdaTest Hyperexecute documentation + - FAQs +url: https://www.lambdatest.com/support/docs/hyperexecute-mcp-server-release-notes-1-0-0/ +site_name: LambdaTest +slug: hyperexecute-mcp-server-release-notes-1-0-0/ +--- + + + + +# 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-release-notes.md b/docs/hyperexecute-release-notes.md index d869081b..b32d2863 100644 --- a/docs/hyperexecute-release-notes.md +++ b/docs/hyperexecute-release-notes.md @@ -49,6 +49,12 @@ HyperExecute is an AI Native Test Orchestration Cloud Platform, enabling test au |----------------|--------------| | [Version 0.2.249](/support/docs/hyperexecute-cli-release-notes-0-2-249) | January 13, 2025| +### MCP releases +#### May, 2025 +| Release Number | Release Date | +|----------------|--------------| +| [Version 1.0.0](/support/docs/hyperexecute-mcp-server-release-notes-1-0-0) | May 28, 2025| + ### 2025 releases #### April, 2025 | Release Number | Release Date | diff --git a/sidebars.js b/sidebars.js index 72486e00..99f46af7 100644 --- a/sidebars.js +++ b/sidebars.js @@ -861,6 +861,21 @@ module.exports = { ], }, + // MCP Server Release Notes + { + type: "category", + collapsed: true, + label: "MCP Releases", + items: [ + { + type: "category", + collapsed: true, + label: "May, 2025", + items: ["hyperexecute-mcp-server-release-notes-1-0-0"], + }, + ], + }, + // 2025 releases { type: "category",