httprunner vs everything
Side-by-side comparison to help you pick between these two MCP servers.
httprunner by httprunner | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 4,277 | ★ 85,748 |
| 30d uses | — | — |
| Score | 55 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationDeveloper Toolstesting | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything