What is the io.github.kulybaba/weather-mcp MCP server?
An MCP server for weather information by @kulybaba
How to install io.github.kulybaba/weather-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"weather-mcp": {
"command": "npx",
"args": [
"-y",
"@kulybaba/mcp-weather-server"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"weather-mcp": {
"command": "npx",
"args": [
"-y",
"@kulybaba/mcp-weather-server"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"weather-mcp": {
"command": "npx",
"args": [
"-y",
"@kulybaba/mcp-weather-server"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"weather-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@kulybaba/mcp-weather-server"
]
}
}
}Claude Code
claude mcp add weather-mcp -- npx -y @kulybaba/mcp-weather-server