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 | — | — |
| Score | 33 | 54 |
| Official | — | — |
| Categories | weatherOther | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 14 mo ago | 1 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
- 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"
],
}
}
}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"]
}
}
}