openweathermap-mcp-server vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
openweathermap-mcp-server by abhayymishraa | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 24 | 76 |
| Official | — | ✓ |
| Categories | weatherapi-integrationProductivity | Web ScrapingAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 13 mo ago | this month |
openweathermap-mcp-server · Summary
MCP server providing weather data from OpenWeatherMap API with Bun runtime.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
openweathermap-mcp-server · Use cases
- Get current weather for any location using coordinates
- Retrieve 5-day weather forecasts for trip planning
- Integrate weather data into AI assistants for location-aware responses
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
openweathermap-mcp-server · Install
bun installbun run index.tsClaude Desktop configuration:
{
"mcpServers": {
"openweathermap": {
"command": "bun",
"args": ["run", "/path/to/openweathermap-mcp-server/index.ts"]
}
}
}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-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}