MCP Catalogs
Home

filesystem vs wwo-mcp

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

filesystem
by modelcontextprotocol
wwo-mcp
by WorldWeatherOnline
Stars★ 85,748★ 1
30d uses
Score7734
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsweatherDeveloper Tools
LanguageTypeScriptJavaScript
Last committhis month1 mo ago

filesystem · Summary

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

wwo-mcp · Summary

World Weather Online MCP server provides comprehensive weather data tools for AI assistants.

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

wwo-mcp · Use cases

  • Enable AI assistants to provide real-time weather information to users
  • Integrate historical weather data into analytical tools
  • Support maritime or outdoor activity planning with specialized weather forecasts

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.

wwo-mcp · Install

Installation

Railway Deployment

  1. Push the repository to GitHub
  2. Deploy to Railway from GitHub repo
  3. Add custom domain (optional)
  4. Test the health endpoint

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "world-weather-online": {
      "url": "https://mcp.worldweatheronline.com/mcp?key=YOUR_API_KEY"
    }
  }
}

Local Development

npm install
npm run dev

Server runs at http://localhost:3000

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