flyto-core vs stealth-browser-mcp
Side-by-side comparison to help you pick between these two MCP servers.
flyto-core by flytohub | stealth-browser-mcp by vibheksoni | |
|---|---|---|
| Stars | ★ 270 | ★ 643 |
| 30d uses | — | — |
| Score | 51 | 54 |
| Official | — | — |
| Categories | Browser AutomationDeveloper ToolsWeb Scraping | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | Python | Python |
| Last commit | this month | this month |
flyto-core · Summary
An MCP server for AI agent automation with 412 modules, execution tracing, replay functionality, and built-in recipes.
stealth-browser-mcp · Summary
Stealth Browser MCP provides undetectable browser automation with antibypass capabilities for MCP-compatible AI agents.
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
stealth-browser-mcp · Use cases
- Automating web scraping on protected websites with antibot measures
- Creating UI clones of websites through AI chat commands
- Intercepting and modifying network traffic in real-time
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_serverstealth-browser-mcp · Install
# Clone and install
git clone https://github.com/vibheksoni/stealth-browser-mcp.git
cd stealth-browser-mcp
python -m venv venv
# Activate virtual environment
# Windows:
venv\Scripts\activate
# Mac/Linux:
source venv/bin/activate
pip install -r requirements.txt**Claude Desktop configuration:**
{
"mcpServers": {
"stealth-browser-mcp": {
"command": "/path/to/stealth-browser-mcp/venv/bin/python",
"args": ["/path/to/stealth-browser-mcp/src/server.py"]
}
}
}