flyto-core vs next-devtools-mcp
Side-by-side comparison to help you pick between these two MCP servers.
flyto-core by flytohub | next-devtools-mcp by vercel | |
|---|---|---|
| Stars | ★ 270 | ★ 747 |
| 30d uses | — | — |
| Score | 51 | 54 |
| Official | — | — |
| Categories | Browser AutomationDeveloper ToolsWeb Scraping | Developer ToolsBrowser AutomationAI / LLM Tools |
| Language | Python | TypeScript |
| Last commit | this month | 2 mo ago |
flyto-core · Summary
An MCP server for AI agent automation with 412 modules, execution tracing, replay functionality, and built-in recipes.
next-devtools-mcp · Summary
Next.js DevTools MCP server providing development tools and utilities for Next.js applications.
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
next-devtools-mcp · Use cases
- Diagnose runtime errors and issues in Next.js applications
- Automate browser testing of Next.js applications using Playwright
- Search and retrieve official Next.js documentation and guides
- Upgrade and migrate Next.js applications to newer versions
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_servernext-devtools-mcp · Install
Installation
Using add-mcp CLI:
npx add-mcp next-devtools-mcp@latestManual installation:
{
"mcpServers": {
"next-devtools": {
"command": "npx",
"args": ["-y", "next-devtools-mcp@latest"]
}
}
}