flowlens-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
flowlens-mcp-server by magentic | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 105 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 5 mo ago | this month |
flowlens-mcp-server · Summary
FlowLens MCP server provides coding agents with complete browser context for debugging and regression testing.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
flowlens-mcp-server · Use cases
- Bug reporting with full context
- Regression testing of critical user flows
- Sharing browser flows with team members for collaborative debugging
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
flowlens-mcp-server · Install
Installation
- Install the FlowLens Chrome extension from the Chrome Web Store
- Install the MCP server:
pipx install flowlens-mcp-server- Add to your MCP client configuration (e.g.,
~/.claude.json):
"flowlens": {
"command": "flowlens-mcp-server",
"type": "stdio"
}- For shareable flows, get your
FLOWLENS_MCP_TOKENfrom the FlowLens platform and add it to your config:
everything · 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