MCP Catalogs
首页

mcp-fetch-weather vs everything

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

mcp-fetch-weather
by IsseiSuar
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30天用量
综合分2777
官方
分类
AI / LLM 工具weather其它
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交11 个月前本月

mcp-fetch-weather · 概述

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

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

mcp-fetch-weather · 使用场景

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

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

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"]
    }
  }
}

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。