Weather MCP server for Claude
Allows the MCP server to require Auth0-issued RS256 access tokens with a specified scope (e.g., weather:read) for protected MCP endpoints, publishing OAuth protected-resource metadata.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Weather MCP server for ClaudeWhat's the weather like in Seattle this weekend?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Weather MCP server for Claude
A minimal remote MCP server using the official TypeScript/JavaScript MCP SDK and Open-Meteo (no API key required). It exposes:
get_weather: current conditions and a 1–7 day forecast by place namePOST /mcp: the Streamable HTTP MCP endpointGET /health: a Render health check
Run locally
Requires Node.js 20 or newer.
corepack enable
pnpm install
pnpm startThe MCP endpoint is http://localhost:3000/mcp.
Related MCP server: weather-mcp
Deploy on Render
Put this directory in a GitHub or GitLab repository.
In Render, choose New > Blueprint and connect the repository.
Render reads
render.yamland creates the web service.When deployment finishes, use
https://YOUR-SERVICE.onrender.com/mcpas the MCP URL.
No weather API key is needed. The free Render plan may sleep when idle, so the first request after inactivity can take longer.
Connect Claude
For Claude clients that support remote custom connectors, add a custom connector whose URL is:
https://YOUR-SERVICE.onrender.com/mcpAuth0 OAuth
The server can operate as an OAuth-protected MCP resource server. Create an
Auth0 API with identifier https://weather-mcp-render-ss69.onrender.com/mcp, add
the weather:read permission, and configure these environment variables:
AUTH_REQUIRED=true
PUBLIC_BASE_URL=https://weather-mcp-render-ss69.onrender.com
AUTH0_ISSUER_BASE_URL=https://YOUR_AUTH0_DOMAIN/
AUTH0_AUDIENCE=https://weather-mcp-render-ss69.onrender.com/mcp
AUTH0_REQUIRED_SCOPE=weather:readWhen enabled, /mcp requires an Auth0 RS256 access token containing the
weather:read scope. The health route stays public. OAuth protected-resource
metadata is published at /.well-known/oauth-protected-resource/mcp.
SupportBridge
Set SUPPORTBRIDGE_API_KEY to enable the SupportBridge tools, MCP App resources,
policy synchronization, and get_weather telemetry. The hosted control plane is
configured with SUPPORTBRIDGE_URL=https://app2.getwith.in, and the source name
defaults to weather-mcp. The SDK remains disabled when no API key is configured.
Example prompt
Use get_weather to tell me the three-day forecast for Richmond, Virginia in imperial units.
Data source
Weather and geocoding data are supplied by Open-Meteo. Review its attribution and commercial-use terms before using this server in a production product.
This server cannot be deployed
Maintenance
Related MCP Connectors
Global weather via Open-Meteo: forecast, historical, marine, air quality, geocoding, elevation.
Real-time weather conditions and multi-day forecasts via Open-Meteo — free, no API key required
Current temperature for a city via Open-Meteo. Query discarded after the call.
Weather forecasts from MET Norway (Yr): geocoding plus hourly forecasts worldwide.
Related MCP Servers
- FlicenseBqualityDmaintenanceProvides current weather conditions and forecasts for any location using the Open-Meteo API.2-
- FlicenseNot gradedqualityBmaintenanceEnables querying current weather, 7-day forecast, UV index, and air quality for any city using the free Open-Meteo API, without requiring an API key.8 npm-
- FlicenseNot gradedqualityCmaintenanceProvides current weather, multi-day forecasts, and umbrella recommendations through natural language queries, using the Open-Meteo API with no API key required.-
- AlicenseAqualityCmaintenanceEnables real-time weather forecasts for any city using the Open-Meteo API, with automatic geocoding and no API keys required.15 npmMIT