weather-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
weather-mcp-server by ezh0v | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 244 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | weatherAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | 3 mo ago | this month |
weather-mcp-server · Summary
A lightweight Go MCP server that provides real-time weather data to AI assistants.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
weather-mcp-server · Use cases
- AI assistants providing weather information in conversations
- Integration with productivity tools that need weather data
- Building location-aware AI applications with real-time meteorological data
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
weather-mcp-server · Install
Installation
Claude Desktop Configuration
Add the server to your Claude configuration:
{
"mcpServers": {
"weather-mcp-server": {
"command": "/path/to/weather-mcp-server",
"env": {
"WEATHER_API_KEY": "your-api-key"
}
}
}
}Build from Source
go build -o weather-mcp-server ./cmd/weather-mcp-serverDocker
docker build -t weather-mcp-server .
docker run -e WEATHER_API_KEY=your-api-key -d --name weather-mcp-server -p 8000:8000 weather-mcp-servereverything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything