MCP Weather Server

by dbsxortime

136 downloads
Not rated
GitHub

Description

# MCP Weather Server 한국 기상청 API를 활용하여 한국의 날씨 정보를 제공하는 MCP 서버입니다. ## 주요 기능 - 🌡️ 현재 날씨 정보 제공 (온도, 습도, 풍속 등) - 📅 초단기예보 및 단기예보 제공 - 📍 위치 기반 날씨 검색 (위도/경도) ## AI 입력 파라미터 AI가 날씨 정보를 조회할 때는 다음 파라미터를 입력해야 합니다: - `latitude`: 위도 (예: 37.5665) - `longitude`: 경도 (예: 126.9780) ### 데이터 입/출력 예시…

About

# MCP Weather Server 한국 기상청 API를 활용하여 한국의 날씨 정보를 제공하는 MCP 서버입니다. ## 주요 기능 - 🌡️ 현재 날씨 정보 제공 (온도, 습도, 풍속 등) - 📅 초단기예보 및 단기예보 제공 - 📍 위치 기반 날씨 검색 (위도/경도) ## AI 입력 파라미터 AI가 날씨 정보를 조회할 때는 다음 파라미터를 입력해야 합니다: - `latitude`: 위도 (예: 37.5665) - `longitude`: 경도 (예: 126.9780) ### 데이터 입/출력 예시 ```json // 입력 예시 { "latitude"…

Details

Author
dbsxortime
Downloads
136
Categories
Media

- Provides current weather data (temperature, humidity, wind speed)
- Offers ultra-short-term and short-term forecasts
- Location-based weather search using latitude/longitude

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name MCP Weather Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install the server via npx by adding it to your MCP client configuration with the WEATHER_API_KEY environment variable set to your API key. The server expects latitude and longitude as input parameters; the AI can automatically resolve location names to coordinates when querying.

get-weather

특정 위치의 초단기 실황 날씨 정보를 조회합니다

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "mcp weather server": {
            "weather": {
                "command": "npx",
                "args": [
                    "-y",
                    "@dbsxortime/mcp-weather-server"
                ],
                "env": {
                    "WEATHER_API_KEY": "<YOUR_WEATHER_API_KEY>"
                }
            }
        }
    }
}

McpServers

{
    "weather": {
        "command": "npx",
        "args": [
            "-y",
            "@dbsxortime/mcp-weather-server"
        ],
        "env": {
            "WEATHER_API_KEY": "<YOUR_WEATHER_API_KEY>"
        }
    }
}

MCP Weather Server

한국 기상청 API를 활용하여 한국의 날씨 정보를 제공하는 MCP 서버입니다.

주요 기능

- 🌡️ 현재 날씨 정보 제공 (온도, 습도, 풍속 등)
- 📅 초단기예보 및 단기예보 제공
- 📍 위치 기반 날씨 검색 (위도/경도)

AI 입력 파라미터

AI가 날씨 정보를 조회할 때는 다음 파라미터를 입력해야 합니다:

- latitude: 위도 (예: 37.5665)
- longitude: 경도 (예: 126.9780)

데이터 입/출력 예시

// 입력 예시
{
  "latitude": 37.5665123,
  "longitude": 126.9780123
}

// 출력 예시
{
"current": [...],
"ultraShortForecast": [...],
"forecast": [...]
}

예시:

서울 양천구 날씨 알려줘 => 위도 자동으로 가져와 입력합니다.

설치 방법

NPX를 사용한 설치

{
  "mcpServers": {
    "weather": {
      "command": "npx",
      "args": ["-y", "@dbsxortime/mcp-weather-server"],
      "env": {
        "WEATHER_API_KEY": "<YOUR_WEATHER_API_KEY>"
      }
    }
  }
}

라이센스

MIT

문의

문제가 있거나 문의사항이 있으시면 이슈를 생성해주세요.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.