MCP Catalogs
Home

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
Score4677
Official
Categories
Browser AutomationDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit5 mo agothis 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

  1. Install the FlowLens Chrome extension from the Chrome Web Store
  2. Install the MCP server:
pipx install flowlens-mcp-server
  1. Add to your MCP client configuration (e.g., ~/.claude.json):
"flowlens": {
  "command": "flowlens-mcp-server",
  "type": "stdio"
}
  1. For shareable flows, get your FLOWLENS_MCP_TOKEN from 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
Comparison generated from public README + GitHub signals. Last updated automatically.