MCP Catalogs
Home

mcp-server-weather-js vs mcp-framework

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

mcp-server-weather-js
by hideya
mcp-framework
by QuantGeekDev
Stars★ 13★ 916
30d uses
Score3354
Official
Categories
weatherOther
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit14 mo ago1 mo ago

mcp-server-weather-js · Summary

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

mcp-framework · Summary

TypeScript framework for building MCP servers with automatic discovery, type safety, and multiple transport options.

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

mcp-framework · Use cases

  • Building custom MCP servers for AI assistants with specific domain functionality
  • Creating cryptocurrency tipping services like tip.md
  • Developing enterprise tools with secure authentication and multiple transport options

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"
      ],
    }
  }
}

mcp-framework · Install

Installation

# Install the framework globally
npm install -g mcp-framework

# Create a new MCP server project
mcp create my-mcp-server

# Navigate to your project
cd my-mcp-server

# Your server is ready to use!

Using with Claude Desktop

Add this configuration to your Claude Desktop config file:

{
  "mcpServers": {
    "my-mcp-server": {
      "command": "node",
      "args": ["/absolute/path/to/my-mcp-server/dist/index.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.