Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 20 additions & 35 deletions docs/hyperexecute-mcp-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,6 @@ import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/co
></script>

# Getting Started with HyperExecute MCP Server
***

## Introduction

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​
Expand All @@ -59,7 +55,6 @@ Get a comprehensive overview of HyperExecute's capabilities by watching our intr
</div>
</div>


## What is Model Context Protocol (MCP)?

The Model Context Protocol (MCP) acts like a "USB-C for AI integrations," creating a universal language between AI models and applications. This standardized interface allows AI assistants to connect with diverse software tools, making it significantly easier to expand capabilities across your digital workflow.
Expand All @@ -78,56 +73,52 @@ Here are the key benefits of using HyperExecute MCP Server:

## Connecting to HyperExecute MCP Server


### Connecting with Cline

#### What is 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:

1. Open VS Code.
2. Click on the Extensions icon in the Activity Bar on the side of the window (or press `Ctrl+Shift+X`).
3. Search for **Cline**"** in the Extensions Marketplace.
**Step 1:** Open VS Code.<br />
**Step 2:** Click on the Extensions icon in the Activity Bar on the side of the window (or press `Ctrl+Shift+X`).<br />
**Step 3:** Search for **Cline** in the Extensions Marketplace.

<img loading="lazy" src={require('../assets/images/hyperexecute-mcp/installing-cline.webp').default} alt="automation-dashboard" width="1920" height="868" className="doc_img"/>

4. Click **Install** on the Cline – The Collaborative AI Coder extension.
5. Once installed, you'll see the Cline icon in your VS Code sidebar.
6. Click on the Cline icon to open the Cline panel.
7. Complete any authentication steps required during first-time setup.
**Step 4:** Click **Install** on the Cline – The Collaborative AI Coder extension.<br />
**Step 5:** Once installed, you'll see the Cline icon in your VS Code sidebar.<br />
**Step 6:** Click on the Cline icon to open the Cline panel.<br />
**Step 7:** Complete any authentication steps required during first-time setup.

### Connecting Cline to HyperExecute MCP Server

#### VS Code Configuration:

1. In VS Code, click on the Cline icon in the sidebar to open the Cline panel.
2. Under the **MCP Servers** section, click **Remote Servers**.

**Step 1:** In VS Code, click on the Cline icon in the sidebar to open the Cline panel.<br />
**Step 2:** Under the **MCP Servers** section, click **Remote Servers**.
<img loading="lazy" src={require('../assets/images/hyperexecute-mcp/vs-code-config.webp').default} alt="automation-dashboard" width="1920" height="868" className="doc_img"/>

3. Add Server Name as **MCP-HyperExecute**.
4. Enter the following URL in the server URL field: `http://mcp.lambdatest.com/hyperexecute?&username=[your-lt-username]&accessKey=[your-lt-access-key]`
6. Replace [your-lt-username] and [your-lt-access-key] with your LambdaTest credentials.
7. Click on **Add Server**.
**Step 3:** Add Server Name as **MCP-HyperExecute**.<br />
**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 />
**Step 5:** Replace [your-lt-username] and [your-lt-access-key] with your LambdaTest credentials. <br />
**Step 6:** Click on **Add Server**.

<img loading="lazy" src={require('../assets/images/hyperexecute-mcp/mcp-add-server.webp').default} alt="automation-dashboard" width="1920" height="868" className="doc_img"/>

### Interacting with HyperExecute MCP Server

Once connected, you can start using Cline to interact with the HyperExecute MCP Server. A common workflow would be:

1. Open your project in VS Code.
2. Open the Cline panel.
3. Type the following prompt: `Analyze the project and create a HyperExecute YAML file using MCP HyperExecute server.`
4. Cline will:
**Step 1:** Open your project in VS Code.<br />
**Step 2:** Open the Cline panel.<br />
**Step 3:** Type the following prompt: `Analyze the project and create a HyperExecute YAML file using MCP HyperExecute server.`<br />
**Step 4:** Cline will:
- analyze your project structure.
- Identify your testing framework and test files.
- Generate appropriate test runner commands.
- Create a complete HyperExecute YAML configuration file tailored to your project.
- Save the YAML file to your project directory.
5. You can then review the generated YAML file and make any necessary adjustments (if any, e.g., adding environment variables, etc.) before running your tests on the LambdaTest HyperExecute Platform.
- Save the YAML file to your project directory.<br />

**Step 5:** You can then review the generated YAML file and make any necessary adjustments (if any, e.g., adding environment variables, etc.) before running your tests on the LambdaTest HyperExecute Platform.

You can also ask Cline for more specific operations, such as:

Expand All @@ -145,9 +136,3 @@ HyperExecute MCP Server provides five main tools:
3. **HyperExecute Documentation Tool:** Provides answers to your queries by fetching information from documentation.
4. **HyperExecute Job Info Tool:** Retrieves information about specific test jobs.
5. **HyperExecute Sessions Tool:** Fetches session details for comprehensive test analysis.






4 changes: 4 additions & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ module.exports = {
},
],
},
{
type: "doc",
id: "hyperexecute-mcp-server",
},
{
type: "category",
collapsed: true,
Expand Down
Loading