httprunner vs stealth-browser-mcp
Side-by-side comparison to help you pick between these two MCP servers.
httprunner by httprunner | stealth-browser-mcp by vibheksoni | |
|---|---|---|
| Stars | ★ 4,277 | ★ 643 |
| 30d uses | — | — |
| Score | 55 | 54 |
| Official | — | — |
| Categories | Browser AutomationDeveloper Toolstesting | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | Go | Python |
| Last commit | 5 mo ago | this month |
httprunner · Summary
HttpRunner is an all-in-one testing framework that includes MCP server functionality for UI automation.
stealth-browser-mcp · Summary
Stealth Browser MCP provides undetectable browser automation with antibypass capabilities for MCP-compatible AI agents.
httprunner · Use cases
- Automated UI testing for mobile applications on Android and iOS
- Cross-platform browser automation with visual recognition
- API testing integration with UI automation in a single framework
stealth-browser-mcp · Use cases
- Automating web scraping on protected websites with antibot measures
- Creating UI clones of websites through AI chat commands
- Intercepting and modifying network traffic in real-time
httprunner · Install
Installation
- Install HttpRunner v5:
go install github.com/httprunner/httprunner@latest- Start the MCP server:
hrp mcp-server- For Claude Desktop configuration, add to
claude_desktop_config.json:
{
"mcpServers": {
"httprunner": {
"command": "hrp",
"args": ["mcp-server"]
}
}
}stealth-browser-mcp · Install
# Clone and install
git clone https://github.com/vibheksoni/stealth-browser-mcp.git
cd stealth-browser-mcp
python -m venv venv
# Activate virtual environment
# Windows:
venv\Scripts\activate
# Mac/Linux:
source venv/bin/activate
pip install -r requirements.txt**Claude Desktop configuration:**
{
"mcpServers": {
"stealth-browser-mcp": {
"command": "/path/to/stealth-browser-mcp/venv/bin/python",
"args": ["/path/to/stealth-browser-mcp/src/server.py"]
}
}
}