flyto-core vs everything
Side-by-side comparison to help you pick between these two MCP servers.
flyto-core by flytohub | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 270 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationDeveloper ToolsWeb Scraping | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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_servereverything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything