This MCP server exposes the WeatherXM PRO APIs as MCP tools, allowing clients to access weather station data, observations, and forecasts through the MCP protocol.
{
"mcpServers": {
"weatherxm-pro-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This MCP server exposes the WeatherXM PRO APIs as MCP tools, allowing clients to access weather station data, observations, and forecasts through the MCP protocol.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 343 days ago. 7 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
🌱 Agricultural AI: Soil analysis, crop recommendations, weather forecasts. FREE TurboQuant.
Hierarchical markdown memory palace for AI agents — structured palace navigation via MCP tools.
Bounding box(bbox) GIS tool: coords conversion, EPSG, WKT, GeoJSON, H3, Overpass, POI, map viz
MCP server for DaData.ru — address validation, company lookup, geocoding. 31 tools.
MCP Security Weekly
Get CVE alerts and security updates for Weatherxm Pro Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server implementation exposing the WeatherXM PRO APIs as MCP tools, allowing clients to access weather station data, observations, and forecasts through the MCP protocol.
Clone the repository to your local machine.
git clone https://github.com/WeatherXM/weatherxm-pro-mcp.git
After cloning the repository, you need to install the dependencies and build the project before running the MCP server.
npm install
npm run build
This is the common configuration for MCP clients such as Claude Desktop, Cursor, Windsurf Editor, VSCode and plugins such as RooCode and Cline.
{
"mcpServers": {
"weatherxm-pro": {
"command": "npx",
"args": [
"-y",
"path to mcp"
],
"env": {
"WEATHERXMPRO_API_KEY": "your-api-key"
}
}
}
}
Replace "path to mcp" with the actual path to the MCP server or package name, and "your-api-key" with your WeatherXM PRO API key.
Note: If you have other MCP servers in use in the client, you can add it to the existing
mcpServersobject.
Follow the steps below to use the WeatherXM PRO MCP server with Claude Desktop MCP client:
Edit the MCP settings file located at:
~/Library/Application Support/Claude/claude_desktop_config.json
Add the WeatherXM PRO MCP server configuration under the mcpServers object.
Restart Claude Desktop to apply the changes.
You can now use the server in Claude Desktop to run queries on the WeatherXM PRO MCP server.
Follow the steps below to use the WeatherXM PRO MCP server with Cursor:
Follow the steps below to use the WeatherXM PRO MCP server with Windsurf Editor:
The MCP server can be built and run as a Docker container.
docker build -t weatherxm-pro-mcp .
docker run -d -p 3000:3000 -e WEATHERXMPRO_API_KEY="your-api-key" -e PORT=3000 weatherxm-pro-mcp
Replace "your-api-key" with your actual WeatherXM PRO API key.