mcp-flight-search vs fetch
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-flight-search by arjunprabhulal | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 42 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 36 | 76 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具travel搜索 | 网页抓取AI / LLM 工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 14 个月前 | 本月 |
mcp-flight-search · 概述
Python MCP 服务器,使用 SerpAPI 提供航班搜索工具,支持单程和往返航班查询。
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
mcp-flight-search · 使用场景
- 需要实时航班信息的旅行助手
- 与预订系统集成的 AI 聊天机器人
- 需要在 Claude Desktop 中使用航班搜索功能的用户
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
mcp-flight-search · 安装
安装软件包:
pip install mcp-flight-search启动 MCP 服务器:
mcp-flight-search --connection_type http对于 Claude Desktop 集成,添加到您的 Claude Desktop 配置中:
{
"mcpServers": {
"flight-search": {
"command": "mcp-flight-search",
"args": ["--connection_type", "http"],
"env": {
"SERP_API_KEY": "your-api-key-here"
}
}
}
}设置 SerpAPI 密钥作为环境变量:
export SERP_API_KEY="your-api-key-here"fetch · 安装
安装
**使用uv(推荐)** 无需特定安装。使用uvx直接运行服务器:
uvx mcp-server-fetch**使用PIP** 通过pip安装:
pip install mcp-server-fetch然后运行:
python -m mcp_server_fetchClaude桌面配置
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}