Weather MCP Tool for Claude
mongte
README
Weather MCP Tool for Claude
한국어 지원 날씨 정보 조회 MCP(Model Context Protocol) 도구입니다. Claude AI와 함께 사용할 수 있으며, 전 세계 도시의 실시간 날씨 정보를 제공합니다.
Features
- 도시 이름으로 날씨 정보 조회 (한국어/영어 지원)
- 실시간 기상 데이터 제공
- 상세한 날씨 정보 (기온, 날씨 상태, 풍속, 풍향, 습도)
- Claude AI와 원활한 통합
사용된 API
설치 방법
# 저장소 클론
git clone https://github.com/yourusername/weather-mcp-tool.git
cd weather-mcp-tool
# 의존성 설치
npm install
# 빌드
npm run build
Claude Desktop 설정
claude_desktop_config.json
파일에 다음 설정을 추가하세요:
{
"mcpServers": {
"weather-server": {
"command": "node",
"args": ["dist/server.js"],
"cwd": "프로젝트_경로"
}
}
}
사용 예시
Claude에서 다음과 같이 사용할 수 있습니다:
const result = await weatherApi.execute({
city: "서울"
});
응답 예시:
{
"city": "Seoul",
"country": "South Korea",
"weather": {
"temperature": 18.5,
"description": "맑음",
"windSpeed": 2.3,
"windDirection": 180,
"humidity": 65
}
}
License
MIT License - 자세한 내용은 LICENSE 파일을 참조하세요.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.