MCP Catalogs
Home

weather-mcp-server vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

weather-mcp-server
by ezh0v
filesystem
by modelcontextprotocol
Stars★ 244★ 85,748
30d uses
Score4977
Official
Categories
weatherAI / LLM ToolsDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageGoTypeScript
Last commit3 mo agothis month

weather-mcp-server · Summary

A lightweight Go MCP server that provides real-time weather data to AI assistants.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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-server

Docker

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-server

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.