MCP Catalogs
Home

mcp-fetch-weather vs fetch

Side-by-side comparison to help you pick between these two MCP servers.

mcp-fetch-weather
by IsseiSuar
fetch
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score2776
Official
Categories
AI / LLM ToolsweatherOther
Web ScrapingAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last commit11 mo agothis month

mcp-fetch-weather · Summary

A minimalist MCP server providing weather fetching functionality using Open-Meteo API.

fetch · Summary

An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.

mcp-fetch-weather · Use cases

  • Enabling weather queries in LLM applications through MCP protocol
  • Serving as a reference implementation for MCP tool development
  • Demonstrating external API integration with MCP servers

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-fetch-weather · Install

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

For Claude Desktop, add this to your configuration:

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

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-fetch

Then run as:

python -m mcp_server_fetch

Claude Desktop Configuration

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.