drio
Open app

Weather MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

Weather MCP Server is a Model Context Protocol (MCP) server that provides real-time weather information using the Open-Meteo API.

To use the Weather MCP Server, install it manually by adding its configuration to the cline_mcp_settings.json file and then use the get_weather tool to retrieve weather data for a specified city.

  • Provides current weather information for any specified city. - Utilizes the free and open-source Open-Meteo API. - Easy installation and configuration without the need for an API key.
  1. Retrieving weather data for applications that require real-time weather updates.
  2. Integrating weather information into other services or platforms.
  3. Assisting users in planning activities based on current weather conditions.

Add to your AI client

Use these steps to connect Weather MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

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

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

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

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

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

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-weather-server-isdaniel": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-weather-server-isdaniel"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

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

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

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

FAQ

Do I need an API key to use the Weather MCP Server?

No, the Weather MCP Server uses the Open-Meteo API, which does not require an API key.

How do I install the Weather MCP Server?

You can install it using pip with the command `pip install mcp_weather_server`.

What parameters do I need to provide to get weather information?

You need to provide the name of the city as a parameter to the `get_weather` tool.