flyto-core vs opentabs
Side-by-side comparison to help you pick between these two MCP servers.
flyto-core by flytohub | opentabs by opentabs-dev | |
|---|---|---|
| Stars | ★ 270 | ★ 579 |
| 30d uses | — | — |
| Score | 51 | 53 |
| Official | — | — |
| Categories | Browser AutomationDeveloper ToolsWeb Scraping | Browser AutomationDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| 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.
opentabs · Summary
Browser automation server that authenticates with web APIs through browser sessions, exposing 100+ plugins with ~2,000 tools.
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
opentabs · Use cases
- Automating tasks across multiple web services without API keys
- Building custom AI agents that interact with web applications
- Creating workflows that integrate authenticated API calls
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_serveropentabs · Install
# Install CLI globally
npm install -g @opentabs-dev/cli
# Start the server
opentabs start- Go to
chrome://extensions/in Chrome (enable Developer mode) - Load the extension from
~/.opentabs/extension(Load unpacked)
For Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"opentabs": {
"command": "npx",
"args": ["@opentabs-dev/cli", "mcp"]
}
}
}