mcp-server-weather-js vs fastmcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-weather-js by hideya | fastmcp by PrefectHQ | |
|---|---|---|
| Stars | ★ 13 | ★ 25,181 |
| 30d uses | — | — |
| Score | 33 | 64 |
| Official | — | — |
| Categories | weatherOther | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | Python |
| Last commit | 14 mo ago | this month |
mcp-server-weather-js · Summary
A simple Node.js MCP server providing US weather forecasts and alerts via two tools.
fastmcp · Summary
FastMCP is the standard Python framework for building MCP servers, tools, and clients.
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
fastmcp · Use cases
- Building custom MCP servers with Python functions
- Creating interactive UIs for MCP tools
- Connecting to MCP servers programmatically
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"
],
}
}
}fastmcp · Install
Install FastMCP using uv:
uv pip install fastmcpFor Claude Desktop, add to your config.json:
{
"mcpServers": {
"fastmcp": {
"command": "uv",
"args": ["run", "fastmcp", "serve"]
}
}
}