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 | — | — |
| Score | 33 | 58 |
| Official | — | — |
| Categories | weatherOther | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | Python |
| Last commit | 14 mo ago | 3 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
- 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"
],
}
}
}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_commandDocker
docker run -p 8000:8000 ghcr.io/open-webui/mcpo:main --api-key "top-secret" -- your_mcp_server_commandClaude Desktop Configuration
{
"mcpServers": {
"mcpo-proxy": {
"command": "uvx",
"args": ["mcpo", "--port", "8000", "--api-key", "top-secret", "--", "your_mcp_server_command"]
}
}
}