mcp-server-weather-js vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-weather-js by hideya | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 13 | ★ 85,748 |
| 30d uses | — | — |
| Score | 33 | 77 |
| Official | — | ✓ |
| Categories | weatherOther | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 14 mo ago | this month |
mcp-server-weather-js · Summary
A simple Node.js MCP server providing US weather forecasts and alerts via two tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-weather-js · Use cases
- Checking weather forecasts for specific locations in the US
- Receiving weather alerts for particular states
- Integrating weather information into AI workflows
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
mcp-server-weather-js · Install
Installation
- Install the npm package:
npm install @h1deya/mcp-server-weather- Add to Claude Desktop configuration:
Edit your claude_desktop_config.json and add:
{
"mcpServers": {
"weather": {
"command": "npx",
"args": [
"-y",
"@h1deya/mcp-server-weather"
],
}
}
}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