Skip to content
Merged
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
23 changes: 23 additions & 0 deletions docs/hyperexecute-mcp-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,29 @@ Make sure to include your LambdaTest username and access key in the request head
* `username`: Your LambdaTest username.
* `accesskey`: Your LambdaTest access key.

Configure the above parameters in your MCP tool configuration file:

```
{
"mcpServers": {
"mcp-lambdatest": {
"disabled": false,
"timeout": 60,
"type": "stdio",
"command": "npx",
"args": [
"mcp-remote@latest",
"https://mcp.lambdatest.com/mcp",
"--header",
"username:<user_name>",
"--header",
"accessKey:<access_key>"
]
}
}
}
```


## Authentication

Expand Down
Loading