WeatherSync-AI vs everything
Side-by-side comparison to help you pick between these two MCP servers.
WeatherSync-AI by HarshilDoshi153 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 30 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper Toolsweather | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 11 mo ago | this month |
WeatherSync-AI · Summary
A lightweight MCP server that fetches real-time weather data from OpenWeather.org based on city names.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
WeatherSync-AI · Use cases
- AI assistants providing weather information to users
- Automated weather-based workflow triggers
- Educational tools demonstrating real-time data integration with LLMs
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
WeatherSync-AI · Install
git clone https://github.com/yourusername/mcp-weather-server.git
cd mcp-weather-server
npm installFor Claude Desktop:
{
"mcpServers": {
"weather-sync": {
"command": "node",
"args": ["/path/to/mcp-weather-server/index.js"]
}
}
}everything · 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