openweathermap-mcp-server vs fetch
并排对比,帮你在这两个 MCP server 之间做选择。
openweathermap-mcp-server by abhayymishraa | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 24 | 76 |
| 官方 | — | ✓ |
| 分类 | weatherapi-integration效率工具 | 网页抓取AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 13 个月前 | 本月 |
openweathermap-mcp-server · 概述
MCP服务器提供OpenWeatherMap API的天气数据,基于Bun运行时。
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
openweathermap-mcp-server · 使用场景
- 通过坐标获取当前位置的天气信息
- 获取5天天气预报用于旅行规划
- 将天气数据集成到AI助手中,实现位置感知响应
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
openweathermap-mcp-server · 安装
bun installbun run index.tsClaude Desktop配置:
{
"mcpServers": {
"openweathermap": {
"command": "bun",
"args": ["run", "/path/to/openweathermap-mcp-server/index.ts"]
}
}
}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"]
}
}
}