httprunner vs opentabs
Side-by-side comparison to help you pick between these two MCP servers.
httprunner by httprunner | opentabs by opentabs-dev | |
|---|---|---|
| Stars | ★ 4,277 | ★ 579 |
| 30d uses | — | — |
| Score | 55 | 53 |
| Official | — | — |
| Categories | Browser AutomationDeveloper Toolstesting | Browser AutomationDeveloper ToolsProductivity |
| Language | Go | TypeScript |
| 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.
opentabs · Summary
Browser automation server that authenticates with web APIs through browser sessions, exposing 100+ plugins with ~2,000 tools.
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
opentabs · Use cases
- Automating tasks across multiple web services without API keys
- Building custom AI agents that interact with web applications
- Creating workflows that integrate authenticated API calls
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"]
}
}
}opentabs · Install
# Install CLI globally
npm install -g @opentabs-dev/cli
# Start the server
opentabs start- Go to
chrome://extensions/in Chrome (enable Developer mode) - Load the extension from
~/.opentabs/extension(Load unpacked)
For Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"opentabs": {
"command": "npx",
"args": ["@opentabs-dev/cli", "mcp"]
}
}
}