MCP Catalogs
Home

chrome-devtools-mcp vs httprunner

Side-by-side comparison to help you pick between these two MCP servers.

chrome-devtools-mcp
by ChromeDevTools
httprunner
by httprunner
Stars★ 39,757★ 4,277
30d uses
Score6555
Official
Categories
Browser AutomationDeveloper ToolsWeb Scraping
Browser AutomationDeveloper Toolstesting
LanguageTypeScriptGo
Last committhis month5 mo ago

chrome-devtools-mcp · Summary

Chrome DevTools MCP server lets AI coding agents control and inspect live Chrome browsers through the MCP protocol.

httprunner · Summary

HttpRunner is an all-in-one testing framework that includes MCP server functionality for UI automation.

chrome-devtools-mcp · Use cases

  • Automated web testing and validation by AI agents
  • Performance analysis and optimization of web applications
  • Debugging web applications through AI-powered inspection

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

chrome-devtools-mcp · Install

Installation

Add the following config to your MCP client:

{
  "mcpServers": {
    "chrome-devtools": {
      "command": "npx",
      "args": ["-y", "chrome-devtools-mcp@latest"]
    }
  }
}

For basic browser tasks in headless mode:

{
  "mcpServers": {
    "chrome-devtools": {
      "command": "npx",
      "args": ["-y", "chrome-devtools-mcp@latest", "--slim", "--headless"]
    }
  }
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.