MCP Catalogs
Home

mcp-server-weather-js vs mcpo

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

mcp-server-weather-js
by hideya
mcpo
by open-webui
Stars★ 13★ 4,197
30d uses
Score3358
Official
Categories
weatherOther
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptPython
Last commit14 mo ago3 mo ago

mcp-server-weather-js · Summary

A simple Node.js MCP server providing US weather forecasts and alerts via two tools.

mcpo · Summary

A proxy server that exposes MCP tools as OpenAPI-compatible HTTP endpoints for seamless integration with LLM agents.

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

mcpo · Use cases

  • Integrating MCP tools with Open WebUI and other LLM frontends expecting OpenAPI
  • Securing MCP servers by adding authentication and documentation through standard HTTP interfaces
  • Enabling legacy systems and web applications to consume MCP tools without protocol changes

mcp-server-weather-js · Install

Installation

  1. Install the npm package:
npm install @h1deya/mcp-server-weather
  1. Add to Claude Desktop configuration:

Edit your claude_desktop_config.json and add:

{
  "mcpServers": {
    "weather": {
      "command": "npx",
      "args": [
        "-y",
        "@h1deya/mcp-server-weather"
      ],
    }
  }
}

mcpo · Install

Installation

# Using uv (recommended)
uvx mcpo --port 8000 --api-key "top-secret" -- your_mcp_server_command

# Using pip
pip install mcpo
mcpo --port 8000 --api-key "top-secret" -- your_mcp_server_command

Docker

docker run -p 8000:8000 ghcr.io/open-webui/mcpo:main --api-key "top-secret" -- your_mcp_server_command

Claude Desktop Configuration

{
  "mcpServers": {
    "mcpo-proxy": {
      "command": "uvx",
      "args": ["mcpo", "--port", "8000", "--api-key", "top-secret", "--", "your_mcp_server_command"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.