MCP Catalogs
Home

flyto-core vs httprunner

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

flyto-core
by flytohub
httprunner
by httprunner
Stars★ 270★ 4,277
30d uses
Score5155
Official
Categories
Browser AutomationDeveloper ToolsWeb Scraping
Browser AutomationDeveloper Toolstesting
LanguagePythonGo
Last committhis month5 mo ago

flyto-core · Summary

An MCP server for AI agent automation with 412 modules, execution tracing, replay functionality, and built-in recipes.

httprunner · Summary

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

flyto-core · Use cases

  • Competitive intelligence gathering through automated web scraping and performance monitoring
  • Automated testing of web applications with screenshot capture and performance metrics
  • Data extraction and transformation workflows across various web sources and APIs

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

flyto-core · Install

Install

pip install flyto-core            # Core engine + CLI + MCP server
pip install flyto-core[browser]   # + browser automation (Playwright)
playwright install chromium        # one-time browser setup

MCP Configuration

Add to your MCP config:

{
  "mcpServers": {
    "flyto-core": {
      "command": "python",
      "args": ["-m", "core.mcp_server"]
    }
  }
}

Or via Claude CLI:

claude mcp add flyto-core -- python -m core.mcp_server

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.