WeatherTrax MCP Server
Click on "Install 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., "@WeatherTrax MCP Serverwhat's the weather in Tokyo?"
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.
π¦ WeatherTrax MCP Server
Run instantly:
npx @jaredco/weather-mcp-serverFast, reliable weather data for Claude and other MCP clients.
Get current conditions and multi-day forecasts for any location worldwide.
π Remote MCP Server (no install required)
https://mcp-weathertrax.jaredco.com
β‘ 10-Second Demo
Ask Claude:
βWhatβs the weather in Miami tomorrow?β
Claude will call the MCP weather server and return a forecast instantly.
Example API call:
curl -X POST https://mcp-weathertrax.jaredco.com/tools/weatherTool \
-H "Content-Type: application/json" \
-d '{"location":"Miami","query_type":"current"}'π Features
Real-time Weather Data β Current conditions, temperature, humidity, wind speed
Multi-day Forecasts β Up to 14-day forecasts
Planning Tool β 7-day forecasts optimized for events or construction
Flexible Locations β City names, ZIP codes, or coordinates
Token-Efficient β Compact responses optimized for LLM usage
Production-Ready β Rate limiting and monitoring
Public API β No API keys required
MCP Compliant β Full JSON-RPC 2.0 support
β‘ Quick Start
Claude Desktop
Add this to your Claude Desktop configuration:
~/Library/Application Support/Claude/claude_desktop_config.json{
"mcpServers": {
"weathertrax": {
"url": "https://mcp-weathertrax.jaredco.com"
}
}
}Restart Claude Desktop.
You can now ask:
Whatβs the weather in New York this weekend?π Direct API Usage
Health Check
curl https://mcp-weathertrax.jaredco.com/healthzMCP Manifest
curl https://mcp-weathertrax.jaredco.com/.well-known/mcp/manifestπ‘ Usage Examples
Related MCP server: Weather MCP Service
Current Weather
curl -X POST https://mcp-weathertrax.jaredco.com/tools/weatherTool \
-H "Content-Type: application/json" \
-d '{
"location": "San Francisco, CA",
"query_type": "current"
}'Example response:
{
"summary": "It is currently 54Β°F and Clear in San Francisco.",
"temp_high": 54,
"temp_low": 54,
"condition": "Clear",
"wind": "5 mph W",
"humidity": 65
}Multi-Day Forecast
curl -X POST https://mcp-weathertrax.jaredco.com/tools/weatherTool \
-H "Content-Type: application/json" \
-d '{
"location": "New York",
"query_type": "multi_day",
"num_days": 3
}'π Available Tools
weatherTool
Retrieve current weather or forecasts.
Input:
{
"location": "city name or coordinates",
"query_type": "current | multi_day",
"num_days": "optional forecast length"
}weatherPlanningTool
7-day planning forecast for outdoor work or events.
Input:
{
"location": "city or place",
"context": "construction | travel | event",
"timeframe": "optional timeframe hint"
}π MCP Protocol Integration
This server supports the full MCP JSON-RPC protocol.
Example tool call:
curl -X POST https://mcp-weathertrax.jaredco.com/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc":"2.0",
"id":1,
"method":"tools/call",
"params":{
"name":"weatherTool",
"arguments":{
"location":"London",
"query_type":"current"
}
}
}'π§ͺ Testing
Run locally:
npm install
npm startQuick tests:
npm testFull test suite:
npm run test:fullCurrent results:
67 / 67 tests passingπ Privacy
Privacy policy available at:
https://mcp-weathertrax.jaredco.com/privacy
Key points:
Request metadata logged for abuse prevention
No persistent storage of weather queries
No cookies or tracking
HTTPS enforced
π Development
Clone the repo:
git clone https://github.com/jaredco/weather-mcp-server.git
cd weather-mcp-server
npm install
npm startServer runs locally at:
http://localhost:3000π¦ Technology Stack
Node.js
Express 5
@modelcontextprotocol/sdk
World Weather Online API
Railway hosting
π License
MIT License.
π Acknowledgments
Built using the Model Context Protocol by Anthropic.
Weather data provided by World Weather Online.
π Status
Server: Production
API Version: 1.0.1
MCP Protocol: 2025-03-26
Made with βοΈ for Claude and MCP
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceProvides real-time weather information and forecasts, connecting AI assistants with live weather data for current conditions and multi-day forecasts for any location worldwide.Last updated
- Flicense-qualityDmaintenanceProvides live weather data and forecasts for any location worldwide through both REST API and MCP endpoints. Supports current weather, multi-day forecasts, and various location formats including city names, coordinates, ZIP codes, and airport codes.Last updated1
- Alicense-qualityCmaintenanceProvides real-time, historical, and forecasted weather data for any location worldwide using the Open-Meteo API. It includes specialized tools for agricultural growing conditions, weather alerts, and up to 16 days of forecasts across multiple transport modes.Last updated28MIT
- Alicense-qualityDmaintenanceProvides real-time weather information and multi-day forecasts for global locations using city names, coordinates, or ZIP codes. It includes tools for current conditions, forecasting, and weather summaries designed for activity planning.Last updated11MIT
Related MCP Connectors
Weather data, forecast API, climate data, historical weather, alerts, agricultural & travel weather.
Global weather API: forecasts, historical data, marine, ski, astronomy and timezone.
Global weather via Open-Meteo: forecast, ERA5 archive, marine, air quality, geocoding, elevation.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jaredco/weather-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server