MCP Catalogs
Home

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
Score5577
Official
Categories
Browser AutomationDeveloper Toolstesting
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last commit5 mo agothis 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

  1. Install HttpRunner v5:
go install github.com/httprunner/httprunner@latest
  1. Start the MCP server:
hrp mcp-server
  1. 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
Comparison generated from public README + GitHub signals. Last updated automatically.