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 | — | — |
| Score | 77 | 57 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | travelSearchAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this 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-everythingfli · Install
Installation
# Install using pipx (recommended for CLI)
pipx install flights
# Or using pip
pip install flightsClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"fli": {
"command": "/Users/<user>/.local/bin/fli-mcp"
}
}
}Replace <user> with your actual username.