|
| 1 | +--- |
| 2 | +id: hyperexecute-mcp-server-release-notes-1-0-0 |
| 3 | +title: Version 1.0.0 |
| 4 | +hide_title: false |
| 5 | +sidebar_label: Version 1.0.0 |
| 6 | +description: Version 1.0.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-1-0-0/ |
| 13 | +site_name: LambdaTest |
| 14 | +slug: hyperexecute-mcp-server-release-notes-1-0-0/ |
| 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-1-0-0/" |
| 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. |
0 commit comments