날씨 MCP 서버
Open-Meteo API를 사용하여 날씨 정보를 제공하는 MCP(Model Context Protocol) 서버입니다.
특징
- 특정 도시의 현재 날씨 정보를 받아보세요.
설치
Pip 설치 및 사용, 이 패키지는 pip를 사용하여 설치할 수 있습니다.
지엑스피1
이 서버는 cline_mcp_settings.json
파일에 구성을 추가하여 수동으로 설치하도록 설계되었습니다.
cline_mcp_settings.json
파일의mcpServers
개체에 다음 항목을 추가합니다.
cline_mcp_settings.json
파일을 저장합니다.
구성
이 서버는 API 키가 필요하지 않습니다. 무료 오픈 소스인 Open-Meteo API를 사용합니다.
용법
이 서버는 get_weather
, get_weather_by_datetime_range
, get_current_datetime
등 여러 도구를 제공합니다.
get_weather
주어진 도시의 현재 날씨 정보를 검색합니다.
매개변수:
city
(문자열, 필수): 도시의 이름입니다.
예:
타이베이의 날씨를 알아보려면 다음과 같이 도구를 사용하면 됩니다.
get_weather_by_datetime_range
시작일과 종료일 사이의 지정된 도시의 날씨 정보를 검색합니다.
매개변수:
city
(문자열, 필수): 도시의 이름입니다.start_date
(문자열, 필수): YYYY-MM-DD 형식(ISO 8601)의 시작 날짜입니다.end_date
(문자열, 필수): YYYY-MM-DD 형식(ISO 8601)의 종료 날짜입니다.
예:
2024년 1월 1일부터 2024년 1월 7일까지 런던의 날씨를 알아보려면 다음과 같이 도구를 사용하면 됩니다.
get_current_datetime
지정된 시간대의 현재 시간을 검색합니다.
매개변수:
timezone_name
(문자열, 필수): IANA 시간대 이름(예: 'America/New_York', 'Europe/London'). 사용자가 시간대를 제공하지 않으면 UTC 시간대를 사용합니다.
예:
뉴욕의 현재 시간을 알아보려면 다음과 같이 도구를 사용하면 됩니다.
개발자를 위한
Python을 실행하기 전에 작업 디렉토리를 변경하세요
또는 어디에서 실행하든 Python이 패키지를 찾도록 하려면 PYTHONPATH를 설정할 수 있습니다.
This server cannot be installed
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
API 키가 필요 없이 Open-Meteo API를 사용하여 지정된 도시의 현재 날씨 정보를 검색하는 모델 컨텍스트 프로토콜 서버입니다.
Related MCP Servers
- AsecurityFlicenseAqualityA Model Context Protocol server that provides AI agents with tools to retrieve weather alerts and detailed forecasts for US locations using the National Weather Service API.Last updated -280TypeScript
- AsecurityFlicenseAqualityA Model Context Protocol server that provides comprehensive weather data querying capabilities based on the Caiyun Weather API, supporting real-time weather, forecasts, and alerts with multi-language support.Last updated -72TypeScript
- -security-license-qualityA Model Context Protocol server that provides current weather information and 3-day forecasts for specified cities using the Open-Meteo API.Last updated -Python
- -security-license-qualityA simple server that implements the Model Context Protocol, allowing AI models like Claude to fetch real-time weather information for any location using the wttr.in API.Last updated -JavaScript