A lightweight Model Context Protocol (MCP) server that enables AI assistants like Claude to retrieve and interpret real-time weather data. Discuss on Hacker News:
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"weather-mcp-server": {
"command": "go",
"args": [
"run",
"github.com/ezh0v/weather-mcp-server@latest"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add weather-mcp-server go run github.com/ezh0v/weather-mcp-server@latest
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"weather-mcp-server": {
"command": "go",
"args": [
"run",
"github.com/ezh0v/weather-mcp-server@latest"
]
}
}
}
📋 Copy