mcp-flight-search vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
mcp-flight-search by arjunprabhulal | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 42 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 76 |
| Official | — | ✓ |
| Categories | AI / LLM ToolstravelSearch | Web ScrapingAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 14 mo ago | this month |
mcp-flight-search · Summary
Python MCP server for flight search using SerpAPI, providing tools to search for flights and check server status.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
mcp-flight-search · Use cases
- Travel assistants that need real-time flight information
- AI chatbots integrated with travel booking systems
- Claude Desktop users requiring flight search capabilities
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
mcp-flight-search · Install
Install the package:
pip install mcp-flight-searchStart the MCP server:
mcp-flight-search --connection_type httpFor Claude Desktop integration, add to your Claude Desktop configuration:
{
"mcpServers": {
"flight-search": {
"command": "mcp-flight-search",
"args": ["--connection_type", "http"],
"env": {
"SERP_API_KEY": "your-api-key-here"
}
}
}
}Set the SerpAPI key as an environment variable:
export SERP_API_KEY="your-api-key-here"fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}