mcp-fetch-weather vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-fetch-weather by IsseiSuar | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 27 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsweatherOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 11 mo ago | this month |
mcp-fetch-weather · Summary
A minimalist MCP server providing weather fetching functionality using Open-Meteo API.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-fetch-weather · Use cases
- Enabling weather queries in LLM applications through MCP protocol
- Serving as a reference implementation for MCP tool development
- Demonstrating external API integration with MCP servers
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-fetch-weather · Install
git clone git@github.com:IsseiSuar/mcp-fetch-weather.git
cd mcp-fetch-weather
pnpm install # or npm installFor Claude Desktop, add this to your configuration:
{
"mcpServers": {
"weather": {
"command": "node",
"args": ["path/to/mcp-fetch-weather/dist/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