MCP Catalogs
Home

everything vs fli

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
fli
by punitarani
Stars★ 85,748★ 2,489
30d uses
Score7757
Official
Categories
Developer ToolsAI / LLM ToolsOther
travelSearchAI / LLM Tools
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

Official MCP test server exercising all protocol features for client builders.

fli · Summary

Google Flights MCP server providing programmatic flight search with two main tools for specific dates and flexible date range searches.

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

fli · Use cases

  • Travel agents comparing flight prices across multiple dates and routes
  • Developers integrating flight search capabilities into travel applications
  • Business travelers optimizing their trip schedules based on price and time

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

fli · Install

Installation

# Install using pipx (recommended for CLI)
pipx install flights

# Or using pip
pip install flights

Claude Desktop Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "fli": {
      "command": "/Users/<user>/.local/bin/fli-mcp"
    }
  }
}

Replace <user> with your actual username.

Comparison generated from public README + GitHub signals. Last updated automatically.