MCP Catalogs
首页

mcp-fetch-weather vs fetch

并排对比,帮你在这两个 MCP server 之间做选择。

mcp-fetch-weather
by IsseiSuar
fetch
by modelcontextprotocol
Stars★ 0★ 85,748
30天用量
综合分2776
官方
分类
AI / LLM 工具weather其它
网页抓取AI / LLM 工具效率工具
实现语言TypeScriptTypeScript
最近提交11 个月前本月

mcp-fetch-weather · 概述

一个简约的MCP服务器,使用Open-Meteo API提供天气查询功能。

fetch · 概述

一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。

mcp-fetch-weather · 使用场景

  • 通过MCP协议在LLM应用中启用天气查询
  • 作为MCP工具开发的参考实现
  • 展示MCP服务器与外部API的集成

fetch · 使用场景

  • 大模型阅读新闻文章和博客
  • 网页内容分析
  • 从公共网站检索信息
  • 分块读取大型网页文档

mcp-fetch-weather · 安装

git clone git@github.com/IsseiSuar/mcp-fetch-weather.git
cd mcp-fetch-weather
pnpm install  # 或 npm install

对于Claude Desktop,将以下内容添加到配置中:

{
  "mcpServers": {
    "weather": {
      "command": "node",
      "args": ["path/to/mcp-fetch-weather/dist/index.js"]
    }
  }
}

fetch · 安装

安装

**使用uv(推荐)** 无需特定安装。使用uvx直接运行服务器:

uvx mcp-server-fetch

**使用PIP** 通过pip安装:

pip install mcp-server-fetch

然后运行:

python -m mcp_server_fetch

Claude桌面配置

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。