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 | — | — |
| Score | 51 | 55 |
| Official | — | — |
| Categories | Browser AutomationDeveloper ToolsWeb Scraping | Browser AutomationDeveloper Toolstesting |
| Language | Python | Go |
| Last commit | this month | 5 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 setupMCP 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_serverhttprunner · 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"]
}
}
}